diff options
author | Frederik Carlier | 2016-04-06 00:17:00 +0200 |
---|---|---|
committer | Nikias Bassen | 2019-12-16 15:18:33 +0100 |
commit | 315cea700da438395c4d2b66e0af2b0b38a2b3d0 (patch) | |
tree | 77971a3c0391f9a98e7614b1937766c5205a731f /include | |
parent | 9f79242a441ce37c28db2b84d49621d26418dc53 (diff) | |
download | libimobiledevice-315cea700da438395c4d2b66e0af2b0b38a2b3d0.tar.gz libimobiledevice-315cea700da438395c4d2b66e0af2b0b38a2b3d0.tar.bz2 |
Define the flags for the diagnostics_relay_* methods in a diagnostics_relay_action_t enum
Diffstat (limited to 'include')
-rw-r--r-- | include/libimobiledevice/diagnostics_relay.h | 12 |
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 { DIAGNOSTICS_RELAY_E_UNKNOWN_ERROR = -256 } diagnostics_relay_error_t; -#define DIAGNOSTICS_RELAY_ACTION_FLAG_WAIT_FOR_DISCONNECT (1 << 1) -#define DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_PASS (1 << 2) -#define DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_FAIL (1 << 3) +typedef enum { + DIAGNOSTICS_RELAY_ACTION_FLAG_WAIT_FOR_DISCONNECT = 1 << 1, + DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_PASS = 1 << 2, + DIAGNOSTICS_RELAY_ACTION_FLAG_DISPLAY_FAIL = 1 << 3 +} diagnostics_relay_action_t; #define DIAGNOSTICS_RELAY_REQUEST_TYPE_ALL "All" #define DIAGNOSTICS_RELAY_REQUEST_TYPE_WIFI "WiFi" @@ -136,7 +138,7 @@ diagnostics_relay_error_t diagnostics_relay_sleep(diagnostics_relay_client_t cli * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the * request */ -diagnostics_relay_error_t diagnostics_relay_restart(diagnostics_relay_client_t client, int flags); +diagnostics_relay_error_t diagnostics_relay_restart(diagnostics_relay_client_t client, diagnostics_relay_action_t flags); /** * 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 * DIAGNOSTICS_RELAY_E_PLIST_ERROR if the device did not acknowledge the * request */ -diagnostics_relay_error_t diagnostics_relay_shutdown(diagnostics_relay_client_t client, int flags); +diagnostics_relay_error_t diagnostics_relay_shutdown(diagnostics_relay_client_t client, diagnostics_relay_action_t flags); /** * Shutdown of the device and optionally show a user notification. |