summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/libimobiledevice.h
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-03-16 02:47:27 +0100
committerGravatar Martin Szulecki2010-03-16 02:47:27 +0100
commit535af4c6a44c1dcf36d2da1ef0d33c69763bd186 (patch)
treeac8cfe6a71ed197584a60d2bc76be6b8fa5cca88 /include/libimobiledevice/libimobiledevice.h
parentdd48a2c0051be9e0f7a8ae99b035ee3c3a333dd4 (diff)
downloadlibimobiledevice-535af4c6a44c1dcf36d2da1ef0d33c69763bd186.tar.gz
libimobiledevice-535af4c6a44c1dcf36d2da1ef0d33c69763bd186.tar.bz2
Rename the *_int to *_private for better semantic and fix public typedefs
This changes the typedef logic slightly for the public headers in order for doxygen to correctly pickup and enable the client struct documentation.
Diffstat (limited to 'include/libimobiledevice/libimobiledevice.h')
-rw-r--r--include/libimobiledevice/libimobiledevice.h8
1 files changed, 4 insertions, 4 deletions
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
44typedef int16_t idevice_error_t; 44typedef int16_t idevice_error_t;
45 45
46struct idevice_int; 46typedef struct idevice_private idevice_private;
47typedef struct idevice_int *idevice_t; 47typedef idevice_private *idevice_t; /**< The device handle. */
48 48
49struct idevice_connection_int; 49typedef struct idevice_connection_private idevice_connection_private;
50typedef struct idevice_connection_int *idevice_connection_t; 50typedef idevice_connection_private *idevice_connection_t; /**< The connection handle. */
51 51
52/* generic */ 52/* generic */
53void idevice_set_debug_level(int level); 53void idevice_set_debug_level(int level);