summaryrefslogtreecommitdiffstats
path: root/src/idevice.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 /src/idevice.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 'src/idevice.h')
-rw-r--r--src/idevice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/idevice.h b/src/idevice.h
index 4aab440..5d83e4c 100644
--- a/src/idevice.h
+++ b/src/idevice.h
@@ -30,19 +30,19 @@ enum connection_type {
30 CONNECTION_USBMUXD = 1 30 CONNECTION_USBMUXD = 1
31}; 31};
32 32
33struct ssl_data_int { 33struct ssl_data_private {
34 gnutls_certificate_credentials_t certificate; 34 gnutls_certificate_credentials_t certificate;
35 gnutls_session_t session; 35 gnutls_session_t session;
36}; 36};
37typedef struct ssl_data_int *ssl_data_t; 37typedef struct ssl_data_private *ssl_data_t;
38 38
39struct idevice_connection_int { 39struct idevice_connection_private {
40 enum connection_type type; 40 enum connection_type type;
41 void *data; 41 void *data;
42 ssl_data_t ssl_data; 42 ssl_data_t ssl_data;
43}; 43};
44 44
45struct idevice_int { 45struct idevice_private {
46 char *uuid; 46 char *uuid;
47 enum connection_type conn_type; 47 enum connection_type conn_type;
48 void *conn_data; 48 void *conn_data;