summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/diagnostics_relay.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libimobiledevice/diagnostics_relay.h')
-rw-r--r--include/libimobiledevice/diagnostics_relay.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/libimobiledevice/diagnostics_relay.h b/include/libimobiledevice/diagnostics_relay.h
index 97ac363..d1d44c2 100644
--- a/include/libimobiledevice/diagnostics_relay.h
+++ b/include/libimobiledevice/diagnostics_relay.h
@@ -42,9 +42,11 @@ typedef enum {
42 DIAGNOSTICS_RELAY_E_UNKNOWN_ERROR = -256 42 DIAGNOSTICS_RELAY_E_UNKNOWN_ERROR = -256
43} diagnostics_relay_error_t; 43} diagnostics_relay_error_t;
44 44
45#define DIAGNOSTICS_RELAY_ACTION_FLAG_WAIT_FOR_DISCONNECT (1 << 1) 45typedef enum {
46#define DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_PASS (1 << 2) 46 DIAGNOSTICS_RELAY_ACTION_FLAG_WAIT_FOR_DISCONNECT = 1 << 1,
47#define DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_FAIL (1 << 3) 47 DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_PASS = 1 << 2,
48 DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_FAIL = 1 << 3
49} diagnostics_relay_action_t;
48 50
49#define DIAGNOSTICS_RELAY_REQUEST_TYPE_ALL "All" 51#define DIAGNOSTICS_RELAY_REQUEST_TYPE_ALL "All"
50#define DIAGNOSTICS_RELAY_REQUEST_TYPE_WIFI "WiFi" 52#define DIAGNOSTICS_RELAY_REQUEST_TYPE_WIFI "WiFi"
@@ -136,7 +138,7 @@ diagnostics_relay_error_t diagnostics_relay_sleep(diagnostics_relay_client_t cli
136 * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the 138 * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the
137 * request 139 * request
138 */ 140 */
139diagnostics_relay_error_t diagnostics_relay_restart(diagnostics_relay_client_t client, int flags); 141diagnostics_relay_error_t diagnostics_relay_restart(diagnostics_relay_client_t client, diagnostics_relay_action_t flags);
140 142
141/** 143/**
142 * Shutdown of the device and optionally show a user notification. 144 * Shutdown of the device and optionally show a user notification.
@@ -153,7 +155,7 @@ diagnostics_relay_error_t diagnostics_relay_restart(diagnostics_relay_client_t c
153 * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the 155 * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the
154 * request 156 * request
155 */ 157 */
156diagnostics_relay_error_t diagnostics_relay_shutdown(diagnostics_relay_client_t client, int flags); 158diagnostics_relay_error_t diagnostics_relay_shutdown(diagnostics_relay_client_t client, diagnostics_relay_action_t flags);
157 159
158/** 160/**
159 * Shutdown of the device and optionally show a user notification. 161 * Shutdown of the device and optionally show a user notification.