diff options
author | 2013-01-09 15:13:33 +0100 | |
---|---|---|
committer | 2013-01-09 15:17:42 +0100 | |
commit | b82fcb5e6190183179673a92f487b37f3b9cc5f1 (patch) | |
tree | 7b8e2270005378d28d250b31996110361971e195 /src/dfu.h | |
parent | c2a143f02e1181429d0f486a787df25038b2a3d1 (diff) | |
download | idevicerestore-b82fcb5e6190183179673a92f487b37f3b9cc5f1.tar.gz idevicerestore-b82fcb5e6190183179673a92f487b37f3b9cc5f1.tar.bz2 |
dfu: Implement dfu_check_device() helper
Diffstat (limited to 'src/dfu.h')
-rw-r--r-- | src/dfu.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -38,6 +38,7 @@ struct dfu_client_t { int dfu_client_new(struct idevicerestore_client_t* client); void dfu_client_free(struct idevicerestore_client_t* client); int dfu_check_mode(struct idevicerestore_client_t* client, int* mode); +int dfu_check_device(struct idevicerestore_client_t* client); int dfu_send_buffer(struct idevicerestore_client_t* client, char* buffer, uint32_t size); int dfu_send_component(struct idevicerestore_client_t* client, plist_t build_identity, const char* component); int dfu_get_cpid(struct idevicerestore_client_t* client, unsigned int* cpid); |