diff options
Diffstat (limited to 'include/libimobiledevice/webinspector.h')
-rw-r--r-- | include/libimobiledevice/webinspector.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/libimobiledevice/webinspector.h b/include/libimobiledevice/webinspector.h index da0759c..064ba91 100644 --- a/include/libimobiledevice/webinspector.h +++ b/include/libimobiledevice/webinspector.h | |||
@@ -31,6 +31,7 @@ extern "C" { | |||
31 | #include <libimobiledevice/libimobiledevice.h> | 31 | #include <libimobiledevice/libimobiledevice.h> |
32 | #include <libimobiledevice/lockdown.h> | 32 | #include <libimobiledevice/lockdown.h> |
33 | 33 | ||
34 | /** Service identifier passed to lockdownd_start_service() to start the webinspector service */ | ||
34 | #define WEBINSPECTOR_SERVICE_NAME "com.apple.webinspector" | 35 | #define WEBINSPECTOR_SERVICE_NAME "com.apple.webinspector" |
35 | 36 | ||
36 | /** Error Codes */ | 37 | /** Error Codes */ |
@@ -45,7 +46,7 @@ typedef enum { | |||
45 | WEBINSPECTOR_E_UNKNOWN_ERROR = -256 | 46 | WEBINSPECTOR_E_UNKNOWN_ERROR = -256 |
46 | } webinspector_error_t; | 47 | } webinspector_error_t; |
47 | 48 | ||
48 | typedef struct webinspector_client_private webinspector_client_private; | 49 | typedef struct webinspector_client_private webinspector_client_private; /**< \private */ |
49 | typedef webinspector_client_private *webinspector_client_t; /**< The client handle. */ | 50 | typedef webinspector_client_private *webinspector_client_t; /**< The client handle. */ |
50 | 51 | ||
51 | 52 | ||
@@ -118,7 +119,7 @@ webinspector_error_t webinspector_receive(webinspector_client_t client, plist_t | |||
118 | * @param client The webinspector client to use for receiving | 119 | * @param client The webinspector client to use for receiving |
119 | * @param plist pointer to a plist_t that will point to the received plist | 120 | * @param plist pointer to a plist_t that will point to the received plist |
120 | * upon successful return | 121 | * upon successful return |
121 | * @param timeout Maximum time in milliseconds to wait for data. | 122 | * @param timeout_ms Maximum time in milliseconds to wait for data. |
122 | * | 123 | * |
123 | * @return WEBINSPECTOR_E_SUCCESS on success, | 124 | * @return WEBINSPECTOR_E_SUCCESS on success, |
124 | * WEBINSPECTOR_E_INVALID_ARG when client or *plist is NULL, | 125 | * WEBINSPECTOR_E_INVALID_ARG when client or *plist is NULL, |