summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2025-07-01 03:34:01 +0200
committerGravatar Nikias Bassen2025-07-01 03:34:01 +0200
commit038a49362570ac56bae330fda8a30635134fc509 (patch)
treec8f1a4254f953e74678562a08627fbd68f7f8d00 /src
parente574eaeb9f1055793dd276caaa75ce9449db3fed (diff)
downloadidevicerestore-038a49362570ac56bae330fda8a30635134fc509.tar.gz
idevicerestore-038a49362570ac56bae330fda8a30635134fc509.tar.bz2
Removed unused 'entries' member from struct idevicerestore_client_t
Diffstat (limited to 'src')
-rw-r--r--src/common.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/common.h b/src/common.h
index 08675a2..3bb648a 100644
--- a/src/common.h
+++ b/src/common.h
@@ -82,16 +82,6 @@ struct idevicerestore_mode_t {
const char* string;
};
-struct idevicerestore_entry_t {
- char* name;
- char* path;
- char* filename;
- char* blob_data;
- uint32_t blob_size;
- struct idevicerestore_entry* next;
- struct idevicerestore_entry* prev;
-};
-
struct idevicerestore_client_t {
int flags;
int debug_level;
@@ -115,7 +105,6 @@ struct idevicerestore_client_t {
struct restore_client_t* restore;
struct recovery_client_t* recovery;
irecv_device_t device;
- struct idevicerestore_entry_t** entries;
struct idevicerestore_mode_t* mode;
char* version;
char* build;