diff options
author | Nikias Bassen | 2019-02-02 00:23:55 +0100 |
---|---|---|
committer | Nikias Bassen | 2019-02-02 00:23:55 +0100 |
commit | 519af01f7dcb448b59ca13bdc1a1b060484f41ec (patch) | |
tree | 3fc370ff01e8daefaa222884848e3d93142cd3db /src/idevicerestore.h | |
parent | 65572cab6baf92cbe4d43fcb0c7a44bc87d95b85 (diff) | |
download | idevicerestore-519af01f7dcb448b59ca13bdc1a1b060484f41ec.tar.gz idevicerestore-519af01f7dcb448b59ca13bdc1a1b060484f41ec.tar.bz2 |
Use ipsw.me API to allow selection and download of any signed firmware version when using --latest
Diffstat (limited to 'src/idevicerestore.h')
-rw-r--r-- | src/idevicerestore.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/idevicerestore.h b/src/idevicerestore.h index 0338dde..3eb4bfc 100644 --- a/src/idevicerestore.h +++ b/src/idevicerestore.h @@ -34,14 +34,15 @@ extern "C" { #include <libirecovery.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 +#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) +#define FLAG_INTERACTIVE (1 << 9) struct idevicerestore_client_t; |