diff options
Diffstat (limited to 'include/libimobiledevice/installation_proxy.h')
| -rw-r--r-- | include/libimobiledevice/installation_proxy.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/libimobiledevice/installation_proxy.h b/include/libimobiledevice/installation_proxy.h index bc23f9d..1ff82dc 100644 --- a/include/libimobiledevice/installation_proxy.h +++ b/include/libimobiledevice/installation_proxy.h | |||
| @@ -124,7 +124,7 @@ typedef void (*instproxy_status_cb_t) (plist_t command, plist_t status, void *us | |||
| 124 | * instproxy_client_t upon successful return. | 124 | * instproxy_client_t upon successful return. |
| 125 | * | 125 | * |
| 126 | * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value | 126 | * @return INSTPROXY_E_SUCCESS on success, or an INSTPROXY_E_* error value |
| 127 | * when an error occured. | 127 | * when an error occurred. |
| 128 | */ | 128 | */ |
| 129 | instproxy_error_t instproxy_client_new(idevice_t device, lockdownd_service_descriptor_t service, instproxy_client_t *client); | 129 | instproxy_error_t instproxy_client_new(idevice_t device, lockdownd_service_descriptor_t service, instproxy_client_t *client); |
| 130 | 130 | ||
| @@ -168,7 +168,7 @@ instproxy_error_t instproxy_client_free(instproxy_client_t client); | |||
| 168 | * of PLIST_DICT holding information about the applications found. | 168 | * of PLIST_DICT holding information about the applications found. |
| 169 | * | 169 | * |
| 170 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 170 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 171 | * an error occured. | 171 | * an error occurred. |
| 172 | */ | 172 | */ |
| 173 | instproxy_error_t instproxy_browse(instproxy_client_t client, plist_t client_options, plist_t *result); | 173 | instproxy_error_t instproxy_browse(instproxy_client_t client, plist_t client_options, plist_t *result); |
| 174 | 174 | ||
| @@ -187,7 +187,7 @@ instproxy_error_t instproxy_browse(instproxy_client_t client, plist_t client_opt | |||
| 187 | * @param user_data Callback data passed to status_cb. | 187 | * @param user_data Callback data passed to status_cb. |
| 188 | * | 188 | * |
| 189 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 189 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 190 | * an error occured. | 190 | * an error occurred. |
| 191 | */ | 191 | */ |
| 192 | instproxy_error_t instproxy_browse_with_callback(instproxy_client_t client, plist_t client_options, instproxy_status_cb_t status_cb, void *user_data); | 192 | instproxy_error_t instproxy_browse_with_callback(instproxy_client_t client, plist_t client_options, instproxy_status_cb_t status_cb, void *user_data); |
| 193 | 193 | ||
| @@ -203,7 +203,7 @@ instproxy_error_t instproxy_browse_with_callback(instproxy_client_t client, plis | |||
| 203 | * holding requested information about the application or NULL on errors. | 203 | * holding requested information about the application or NULL on errors. |
| 204 | * | 204 | * |
| 205 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 205 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 206 | * an error occured. | 206 | * an error occurred. |
| 207 | */ | 207 | */ |
| 208 | instproxy_error_t instproxy_lookup(instproxy_client_t client, const char** appids, plist_t client_options, plist_t *result); | 208 | instproxy_error_t instproxy_lookup(instproxy_client_t client, const char** appids, plist_t client_options, plist_t *result); |
| 209 | 209 | ||
| @@ -224,7 +224,7 @@ instproxy_error_t instproxy_lookup(instproxy_client_t client, const char** appid | |||
| 224 | * @param user_data Callback data passed to status_cb. | 224 | * @param user_data Callback data passed to status_cb. |
| 225 | * | 225 | * |
| 226 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 226 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 227 | * an error occured. | 227 | * an error occurred. |
| 228 | * | 228 | * |
| 229 | * @note If a callback function is given (async mode), this function returns | 229 | * @note If a callback function is given (async mode), this function returns |
| 230 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 230 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -252,7 +252,7 @@ instproxy_error_t instproxy_install(instproxy_client_t client, const char *pkg_p | |||
| 252 | * @param user_data Callback data passed to status_cb. | 252 | * @param user_data Callback data passed to status_cb. |
| 253 | * | 253 | * |
| 254 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 254 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 255 | * an error occured. | 255 | * an error occurred. |
| 256 | * | 256 | * |
| 257 | * @note If a callback function is given (async mode), this function returns | 257 | * @note If a callback function is given (async mode), this function returns |
| 258 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 258 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -273,7 +273,7 @@ instproxy_error_t instproxy_upgrade(instproxy_client_t client, const char *pkg_p | |||
| 273 | * @param user_data Callback data passed to status_cb. | 273 | * @param user_data Callback data passed to status_cb. |
| 274 | * | 274 | * |
| 275 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 275 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 276 | * an error occured. | 276 | * an error occurred. |
| 277 | * | 277 | * |
| 278 | * @note If a callback function is given (async mode), this function returns | 278 | * @note If a callback function is given (async mode), this function returns |
| 279 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 279 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -294,7 +294,7 @@ instproxy_error_t instproxy_uninstall(instproxy_client_t client, const char *app | |||
| 294 | * holding information about the archived applications found. | 294 | * holding information about the archived applications found. |
| 295 | * | 295 | * |
| 296 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 296 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 297 | * an error occured. | 297 | * an error occurred. |
| 298 | */ | 298 | */ |
| 299 | instproxy_error_t instproxy_lookup_archives(instproxy_client_t client, plist_t client_options, plist_t *result); | 299 | instproxy_error_t instproxy_lookup_archives(instproxy_client_t client, plist_t client_options, plist_t *result); |
| 300 | 300 | ||
| @@ -315,7 +315,7 @@ instproxy_error_t instproxy_lookup_archives(instproxy_client_t client, plist_t c | |||
| 315 | * @param user_data Callback data passed to status_cb. | 315 | * @param user_data Callback data passed to status_cb. |
| 316 | * | 316 | * |
| 317 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 317 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 318 | * an error occured. | 318 | * an error occurred. |
| 319 | * | 319 | * |
| 320 | * @note If a callback function is given (async mode), this function returns | 320 | * @note If a callback function is given (async mode), this function returns |
| 321 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 321 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -339,7 +339,7 @@ instproxy_error_t instproxy_archive(instproxy_client_t client, const char *appid | |||
| 339 | * @param user_data Callback data passed to status_cb. | 339 | * @param user_data Callback data passed to status_cb. |
| 340 | * | 340 | * |
| 341 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 341 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 342 | * an error occured. | 342 | * an error occurred. |
| 343 | * | 343 | * |
| 344 | * @note If a callback function is given (async mode), this function returns | 344 | * @note If a callback function is given (async mode), this function returns |
| 345 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 345 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -362,7 +362,7 @@ instproxy_error_t instproxy_restore(instproxy_client_t client, const char *appid | |||
| 362 | * @param user_data Callback data passed to status_cb. | 362 | * @param user_data Callback data passed to status_cb. |
| 363 | * | 363 | * |
| 364 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 364 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 365 | * an error occured. | 365 | * an error occurred. |
| 366 | * | 366 | * |
| 367 | * @note If a callback function is given (async mode), this function returns | 367 | * @note If a callback function is given (async mode), this function returns |
| 368 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been | 368 | * INSTPROXY_E_SUCCESS immediately if the status updater thread has been |
| @@ -383,7 +383,7 @@ instproxy_error_t instproxy_remove_archive(instproxy_client_t client, const char | |||
| 383 | * holding information if the capabilities matched or NULL on errors. | 383 | * holding information if the capabilities matched or NULL on errors. |
| 384 | * | 384 | * |
| 385 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if | 385 | * @return INSTPROXY_E_SUCCESS on success or an INSTPROXY_E_* error value if |
| 386 | * an error occured. | 386 | * an error occurred. |
| 387 | */ | 387 | */ |
| 388 | instproxy_error_t instproxy_check_capabilities_match(instproxy_client_t client, const char** capabilities, plist_t client_options, plist_t *result); | 388 | instproxy_error_t instproxy_check_capabilities_match(instproxy_client_t client, const char** capabilities, plist_t client_options, plist_t *result); |
| 389 | 389 | ||
| @@ -493,7 +493,7 @@ void instproxy_client_options_free(plist_t client_options); | |||
| 493 | * | 493 | * |
| 494 | * @return INSTPROXY_E_SUCCESS on success, INSTPROXY_E_OP_FAILED if | 494 | * @return INSTPROXY_E_SUCCESS on success, INSTPROXY_E_OP_FAILED if |
| 495 | * the path could not be determined or an INSTPROXY_E_* error | 495 | * the path could not be determined or an INSTPROXY_E_* error |
| 496 | * value if an error occured. | 496 | * value if an error occurred. |
| 497 | */ | 497 | */ |
| 498 | instproxy_error_t instproxy_client_get_path_for_bundle_identifier(instproxy_client_t client, const char* bundle_id, char** path); | 498 | instproxy_error_t instproxy_client_get_path_for_bundle_identifier(instproxy_client_t client, const char* bundle_id, char** path); |
| 499 | 499 | ||
