summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.h
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2012-11-07 21:54:09 +0100
committerGravatar Martin Szulecki2012-11-07 21:54:09 +0100
commitba11d4e1afce58db688a076e5a4d82f8a64541f5 (patch)
treeaf52c2629a6a3eacfd673588196a6c2d17e537e6 /src/idevicerestore.h
parent0f7af902dc07f3487f0d540923f0956fbcd30ebd (diff)
downloadidevicerestore-ba11d4e1afce58db688a076e5a4d82f8a64541f5.tar.gz
idevicerestore-ba11d4e1afce58db688a076e5a4d82f8a64541f5.tar.bz2
Move flags into idevicerestore.h
Diffstat (limited to 'src/idevicerestore.h')
-rw-r--r--src/idevicerestore.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/idevicerestore.h b/src/idevicerestore.h
index 446edf4..3201280 100644
--- a/src/idevicerestore.h
+++ b/src/idevicerestore.h
@@ -31,6 +31,16 @@ extern "C" {
#include "common.h"
+// the flag with value 1 is reserved for internal use only. don't use it.
+#define FLAG_DEBUG 1 << 1
+#define FLAG_ERASE 1 << 2
+#define FLAG_CUSTOM 1 << 3
+#define FLAG_EXCLUDE 1 << 4
+#define FLAG_PWN 1 << 5
+#define FLAG_NOACTION 1 << 6
+#define FLAG_SHSHONLY 1 << 7
+#define FLAG_LATEST 1 << 8
+
struct idevicerestore_client_t;
struct idevicerestore_client_t* idevicerestore_client_new();