diff options
author | Nikias Bassen | 2012-07-16 15:51:11 +0200 |
---|---|---|
committer | Nikias Bassen | 2012-07-16 15:51:11 +0200 |
commit | ca392863d770e522285615af4e1a9c1cd38fef33 (patch) | |
tree | 6b6358a627dcc3b3dd9d6a76e898e88bf0a91276 /src/restore.h | |
parent | b94dcbde31247d72a1acd794678876ea0b778ad1 (diff) | |
download | idevicerestore-ca392863d770e522285615af4e1a9c1cd38fef33.tar.gz idevicerestore-ca392863d770e522285615af4e1a9c1cd38fef33.tar.bz2 |
mass replace uuid->udid and raise libimobiledevice requirement to >= 1.1.4
Diffstat (limited to 'src/restore.h')
-rw-r--r-- | src/restore.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/restore.h b/src/restore.h index deb8506..6e9c96e 100644 --- a/src/restore.h +++ b/src/restore.h @@ -33,15 +33,15 @@ extern "C" { struct restore_client_t { plist_t tss; idevice_t device; - char* uuid; + char* udid; unsigned int operation; const char* filesystem; uint64_t protocol_version; restored_client_t client; }; -int restore_check_mode(const char* uuid); -int restore_check_device(const char* uuid); +int restore_check_mode(const char* udid); +int restore_check_device(const char* udid); int restore_client_new(struct idevicerestore_client_t* client); void restore_client_free(struct idevicerestore_client_t* client); int restore_reboot(struct idevicerestore_client_t* client); |