diff options
author | 2010-06-21 03:47:54 -0400 | |
---|---|---|
committer | 2010-06-21 03:59:31 -0400 | |
commit | 930f4b350474435e011b9dca18424dd1c42ea353 (patch) | |
tree | 68b5631b4877710b9aa39e4aa68cbc538bf5d324 /src/normal.h | |
parent | 24afafe06f902bfd9f5652beb8797f24033c68bc (diff) | |
download | idevicerestore-930f4b350474435e011b9dca18424dd1c42ea353.tar.gz idevicerestore-930f4b350474435e011b9dca18424dd1c42ea353.tar.bz2 |
Finally fixed the out of control problem
Diffstat (limited to 'src/normal.h')
-rw-r--r-- | src/normal.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/normal.h b/src/normal.h index 352e643..836d495 100644 --- a/src/normal.h +++ b/src/normal.h @@ -37,8 +37,12 @@ struct normal_client_t { plist_t tss; }; + int normal_check_mode(const char* uuid); int normal_check_device(const char* uuid); +int normal_client_new(struct idevicerestore_client_t* client); +void normal_client_free(struct idevicerestore_client_t* client); +int normal_open_with_timeout(struct idevicerestore_client_t* client); int normal_enter_recovery(const char* uuid); int normal_get_cpid(const char* uuid, uint32_t* cpid); int normal_get_bdid(const char* uuid, uint32_t* cpid); |