diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/libimobiledevice/afc.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/file_relay.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/installation_proxy.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/libimobiledevice.h | 8 | ||||
| -rw-r--r-- | include/libimobiledevice/lockdown.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/mobile_image_mounter.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/mobilebackup.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/mobilesync.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/notification_proxy.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/sbservices.h | 4 | ||||
| -rw-r--r-- | include/libimobiledevice/screenshotr.h | 4 |
11 files changed, 24 insertions, 24 deletions
diff --git a/include/libimobiledevice/afc.h b/include/libimobiledevice/afc.h index 5b61499..790df3d 100644 --- a/include/libimobiledevice/afc.h +++ b/include/libimobiledevice/afc.h | |||
| @@ -83,8 +83,8 @@ typedef enum { | |||
| 83 | AFC_LOCK_UN = 8 | 4 // unlock | 83 | AFC_LOCK_UN = 8 | 4 // unlock |
| 84 | } afc_lock_op_t; | 84 | } afc_lock_op_t; |
| 85 | 85 | ||
| 86 | struct afc_client_int; | 86 | typedef struct afc_client_private afc_client_private; |
| 87 | typedef struct afc_client_int *afc_client_t; | 87 | typedef afc_client_private *afc_client_t; /**< The client handle. */ |
| 88 | 88 | ||
| 89 | /* Interface */ | 89 | /* Interface */ |
| 90 | afc_error_t afc_client_new(idevice_t device, uint16_t port, afc_client_t *client); | 90 | afc_error_t afc_client_new(idevice_t device, uint16_t port, afc_client_t *client); |
diff --git a/include/libimobiledevice/file_relay.h b/include/libimobiledevice/file_relay.h index 268eed8..dd65b38 100644 --- a/include/libimobiledevice/file_relay.h +++ b/include/libimobiledevice/file_relay.h | |||
| @@ -41,8 +41,8 @@ extern "C" { | |||
| 41 | 41 | ||
| 42 | typedef int16_t file_relay_error_t; | 42 | typedef int16_t file_relay_error_t; |
| 43 | 43 | ||
| 44 | struct file_relay_client_int; | 44 | typedef struct file_relay_client_private file_relay_client_private; |
| 45 | typedef struct file_relay_client_int *file_relay_client_t; | 45 | typedef file_relay_client_private *file_relay_client_t; /**< The client handle. */ |
| 46 | 46 | ||
| 47 | file_relay_error_t file_relay_client_new(idevice_t device, uint16_t port, file_relay_client_t *client); | 47 | file_relay_error_t file_relay_client_new(idevice_t device, uint16_t port, file_relay_client_t *client); |
| 48 | file_relay_error_t file_relay_client_free(file_relay_client_t client); | 48 | file_relay_error_t file_relay_client_free(file_relay_client_t client); |
diff --git a/include/libimobiledevice/installation_proxy.h b/include/libimobiledevice/installation_proxy.h index 22e76b1..8a7cfb9 100644 --- a/include/libimobiledevice/installation_proxy.h +++ b/include/libimobiledevice/installation_proxy.h | |||
| @@ -42,8 +42,8 @@ extern "C" { | |||
| 42 | 42 | ||
| 43 | typedef int16_t instproxy_error_t; | 43 | typedef int16_t instproxy_error_t; |
| 44 | 44 | ||
| 45 | struct instproxy_client_int; | 45 | typedef struct instproxy_client_private instproxy_client_private; |
| 46 | typedef struct instproxy_client_int *instproxy_client_t; | 46 | typedef instproxy_client_private *instproxy_client_t; /**< The client handle. */ |
| 47 | 47 | ||
| 48 | typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status); | 48 | typedef void (*instproxy_status_cb_t) (const char *operation, plist_t status); |
| 49 | 49 | ||
diff --git a/include/libimobiledevice/libimobiledevice.h b/include/libimobiledevice/libimobiledevice.h index 87b078a..73e82fe 100644 --- a/include/libimobiledevice/libimobiledevice.h +++ b/include/libimobiledevice/libimobiledevice.h | |||
| @@ -43,11 +43,11 @@ extern "C" { | |||
| 43 | 43 | ||
| 44 | typedef int16_t idevice_error_t; | 44 | typedef int16_t idevice_error_t; |
| 45 | 45 | ||
| 46 | struct idevice_int; | 46 | typedef struct idevice_private idevice_private; |
| 47 | typedef struct idevice_int *idevice_t; | 47 | typedef idevice_private *idevice_t; /**< The device handle. */ |
| 48 | 48 | ||
| 49 | struct idevice_connection_int; | 49 | typedef struct idevice_connection_private idevice_connection_private; |
| 50 | typedef struct idevice_connection_int *idevice_connection_t; | 50 | typedef idevice_connection_private *idevice_connection_t; /**< The connection handle. */ |
| 51 | 51 | ||
| 52 | /* generic */ | 52 | /* generic */ |
| 53 | void idevice_set_debug_level(int level); | 53 | void idevice_set_debug_level(int level); |
diff --git a/include/libimobiledevice/lockdown.h b/include/libimobiledevice/lockdown.h index bfdffad..6abf6d6 100644 --- a/include/libimobiledevice/lockdown.h +++ b/include/libimobiledevice/lockdown.h | |||
| @@ -55,8 +55,8 @@ extern "C" { | |||
| 55 | 55 | ||
| 56 | typedef int16_t lockdownd_error_t; | 56 | typedef int16_t lockdownd_error_t; |
| 57 | 57 | ||
| 58 | struct lockdownd_client_int; | 58 | typedef struct lockdownd_client_private lockdownd_client_private; |
| 59 | typedef struct lockdownd_client_int *lockdownd_client_t; | 59 | typedef lockdownd_client_private *lockdownd_client_t; /**< The client handle. */ |
| 60 | 60 | ||
| 61 | struct lockdownd_pair_record { | 61 | struct lockdownd_pair_record { |
| 62 | char *device_certificate; | 62 | char *device_certificate; |
diff --git a/include/libimobiledevice/mobile_image_mounter.h b/include/libimobiledevice/mobile_image_mounter.h index 63dcb14..5681d8b 100644 --- a/include/libimobiledevice/mobile_image_mounter.h +++ b/include/libimobiledevice/mobile_image_mounter.h | |||
| @@ -39,8 +39,8 @@ extern "C" { | |||
| 39 | 39 | ||
| 40 | typedef int16_t mobile_image_mounter_error_t; | 40 | typedef int16_t mobile_image_mounter_error_t; |
| 41 | 41 | ||
| 42 | struct mobile_image_mounter_client_int; | 42 | typedef struct mobile_image_mounter_client_private mobile_image_mounter_client_private; |
| 43 | typedef struct mobile_image_mounter_client_int *mobile_image_mounter_client_t; | 43 | typedef mobile_image_mounter_client_private *mobile_image_mounter_client_t; /**< The client handle. */ |
| 44 | 44 | ||
| 45 | /* Interface */ | 45 | /* Interface */ |
| 46 | mobile_image_mounter_error_t mobile_image_mounter_new(idevice_t device, uint16_t port, mobile_image_mounter_client_t *client); | 46 | mobile_image_mounter_error_t mobile_image_mounter_new(idevice_t device, uint16_t port, mobile_image_mounter_client_t *client); |
diff --git a/include/libimobiledevice/mobilebackup.h b/include/libimobiledevice/mobilebackup.h index e29dbf4..d6f9013 100644 --- a/include/libimobiledevice/mobilebackup.h +++ b/include/libimobiledevice/mobilebackup.h | |||
| @@ -41,8 +41,8 @@ extern "C" { | |||
| 41 | 41 | ||
| 42 | typedef int16_t mobilebackup_error_t; | 42 | typedef int16_t mobilebackup_error_t; |
| 43 | 43 | ||
| 44 | struct mobilebackup_client_int; | 44 | typedef struct mobilebackup_client_private mobilebackup_client_private; |
| 45 | typedef struct mobilebackup_client_int *mobilebackup_client_t; | 45 | typedef mobilebackup_client_private *mobilebackup_client_t; /**< The client handle. */ |
| 46 | 46 | ||
| 47 | mobilebackup_error_t mobilebackup_client_new(idevice_t device, uint16_t port, mobilebackup_client_t * client); | 47 | mobilebackup_error_t mobilebackup_client_new(idevice_t device, uint16_t port, mobilebackup_client_t * client); |
| 48 | mobilebackup_error_t mobilebackup_client_free(mobilebackup_client_t client); | 48 | mobilebackup_error_t mobilebackup_client_free(mobilebackup_client_t client); |
diff --git a/include/libimobiledevice/mobilesync.h b/include/libimobiledevice/mobilesync.h index 349b6a3..2e330ee 100644 --- a/include/libimobiledevice/mobilesync.h +++ b/include/libimobiledevice/mobilesync.h | |||
| @@ -40,8 +40,8 @@ extern "C" { | |||
| 40 | 40 | ||
| 41 | typedef int16_t mobilesync_error_t; | 41 | typedef int16_t mobilesync_error_t; |
| 42 | 42 | ||
| 43 | struct mobilesync_client_int; | 43 | typedef struct mobilesync_client_private mobilesync_client_private; |
| 44 | typedef struct mobilesync_client_int *mobilesync_client_t; | 44 | typedef mobilesync_client_private *mobilesync_client_t; /**< The client handle */ |
| 45 | 45 | ||
| 46 | mobilesync_error_t mobilesync_client_new(idevice_t device, uint16_t port, mobilesync_client_t * client); | 46 | mobilesync_error_t mobilesync_client_new(idevice_t device, uint16_t port, mobilesync_client_t * client); |
| 47 | mobilesync_error_t mobilesync_client_free(mobilesync_client_t client); | 47 | mobilesync_error_t mobilesync_client_free(mobilesync_client_t client); |
diff --git a/include/libimobiledevice/notification_proxy.h b/include/libimobiledevice/notification_proxy.h index 4f4c1fd..fa69088 100644 --- a/include/libimobiledevice/notification_proxy.h +++ b/include/libimobiledevice/notification_proxy.h | |||
| @@ -68,8 +68,8 @@ typedef int16_t np_error_t; | |||
| 68 | #define NP_LANGUAGE_CHANGED "com.apple.language.changed" | 68 | #define NP_LANGUAGE_CHANGED "com.apple.language.changed" |
| 69 | #define NP_ADDRESS_BOOK_PREF_CHANGED "com.apple.AddressBook.PreferenceChanged" | 69 | #define NP_ADDRESS_BOOK_PREF_CHANGED "com.apple.AddressBook.PreferenceChanged" |
| 70 | 70 | ||
| 71 | struct np_client_int; | 71 | typedef struct np_client_private np_client_private; |
| 72 | typedef struct np_client_int *np_client_t; | 72 | typedef np_client_private *np_client_t; /**< The client handle. */ |
| 73 | 73 | ||
| 74 | typedef void (*np_notify_cb_t) (const char *notification, void *userdata); | 74 | typedef void (*np_notify_cb_t) (const char *notification, void *userdata); |
| 75 | 75 | ||
diff --git a/include/libimobiledevice/sbservices.h b/include/libimobiledevice/sbservices.h index 2923082..0fcec86 100644 --- a/include/libimobiledevice/sbservices.h +++ b/include/libimobiledevice/sbservices.h | |||
| @@ -39,8 +39,8 @@ extern "C" { | |||
| 39 | 39 | ||
| 40 | typedef int16_t sbservices_error_t; | 40 | typedef int16_t sbservices_error_t; |
| 41 | 41 | ||
| 42 | struct sbservices_client_int; | 42 | typedef struct sbservices_client_private sbservices_client_private; |
| 43 | typedef struct sbservices_client_int *sbservices_client_t; | 43 | typedef sbservices_client_private *sbservices_client_t; /**< The client handle. */ |
| 44 | 44 | ||
| 45 | /* Interface */ | 45 | /* Interface */ |
| 46 | sbservices_error_t sbservices_client_new(idevice_t device, uint16_t port, sbservices_client_t *client); | 46 | sbservices_error_t sbservices_client_new(idevice_t device, uint16_t port, sbservices_client_t *client); |
diff --git a/include/libimobiledevice/screenshotr.h b/include/libimobiledevice/screenshotr.h index 077f50c..d9a3ffd 100644 --- a/include/libimobiledevice/screenshotr.h +++ b/include/libimobiledevice/screenshotr.h | |||
| @@ -40,8 +40,8 @@ extern "C" { | |||
| 40 | 40 | ||
| 41 | typedef int16_t screenshotr_error_t; | 41 | typedef int16_t screenshotr_error_t; |
| 42 | 42 | ||
| 43 | struct screenshotr_client_int; | 43 | typedef struct screenshotr_client_private screenshotr_client_private; |
| 44 | typedef struct screenshotr_client_int *screenshotr_client_t; | 44 | typedef screenshotr_client_private *screenshotr_client_t; /**< The client handle. */ |
| 45 | 45 | ||
| 46 | screenshotr_error_t screenshotr_client_new(idevice_t device, uint16_t port, screenshotr_client_t * client); | 46 | screenshotr_error_t screenshotr_client_new(idevice_t device, uint16_t port, screenshotr_client_t * client); |
| 47 | screenshotr_error_t screenshotr_client_free(screenshotr_client_t client); | 47 | screenshotr_error_t screenshotr_client_free(screenshotr_client_t client); |
