diff options
author | Nikias Bassen | 2019-08-29 08:29:14 +0200 |
---|---|---|
committer | Nikias Bassen | 2019-08-29 08:29:14 +0200 |
commit | 6d5a3d6a35a8610f83d6a69156cfe1b64da4f2bd (patch) | |
tree | c3c8cd3fc549819f9e7ace604505a14c539ede7c /include | |
parent | 5086a9751f5c1298ac423a52b63ca299130aa1c2 (diff) | |
download | libimobiledevice-6d5a3d6a35a8610f83d6a69156cfe1b64da4f2bd.tar.gz libimobiledevice-6d5a3d6a35a8610f83d6a69156cfe1b64da4f2bd.tar.bz2 |
preboard: Remove development notes from preboard.c and add info to public header
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/preboard.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/libimobiledevice/preboard.h b/include/libimobiledevice/preboard.h index dc4e5f3..60b8e26 100644 --- a/include/libimobiledevice/preboard.h +++ b/include/libimobiledevice/preboard.h @@ -140,6 +140,17 @@ preboard_error_t preboard_receive_with_timeout(preboard_client_t client, plist_t * Can be NULL if you want to handle receiving messages in your own code. * @param user_data User data for callback function or NULL. * + * The callback or following preboard_receive* invocations will usually + * receive a dictionary with: + * { ShowDialog: true } + * If the user does not enter a passcode, after 2 minutes a timeout is reached + * and the device sends a dictionary with: + * { Timeout: true } + * followed by { HideDialog: true } + * If the user aborts the passcode entry, the device sends a dictionary: + * { Error: 1, ErrorString: <error string> } + * followed by { HideDialog: true } + * * @return PREBOARD_E_SUCCESS if the command was successfully submitted, * PREBOARD_E_INVALID_ARG when client is invalid, * or a PREBOARD_E_* error code on error. @@ -155,6 +166,12 @@ preboard_error_t preboard_create_stashbag(preboard_client_t client, plist_t mani * Can be NULL if you want to handle receiving messages in your own code. * @param user_data User data for callback function or NULL. * + * The callback or following preboard_receive* invocations will usually + * receive a dictionary with: + * { StashbagCommitComplete: true } + * or in case of an error: + * { StashbagCommitComplete: 0, Error: 1, <optional> ErrorString: <error string> } + * * @return PREBOARD_E_SUCCESS if the command was successfully submitted, * PREBOARD_E_INVALID_ARG when client is invalid, * or a PREBOARD_E_* error code on error. |