From 535af4c6a44c1dcf36d2da1ef0d33c69763bd186 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Tue, 16 Mar 2010 02:47:27 +0100 Subject: 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. --- include/libimobiledevice/libimobiledevice.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/libimobiledevice/libimobiledevice.h') 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" { typedef int16_t idevice_error_t; -struct idevice_int; -typedef struct idevice_int *idevice_t; +typedef struct idevice_private idevice_private; +typedef idevice_private *idevice_t; /**< The device handle. */ -struct idevice_connection_int; -typedef struct idevice_connection_int *idevice_connection_t; +typedef struct idevice_connection_private idevice_connection_private; +typedef idevice_connection_private *idevice_connection_t; /**< The connection handle. */ /* generic */ void idevice_set_debug_level(int level); -- cgit v1.1-32-gdbae