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/afc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/libimobiledevice/afc.h') 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 { AFC_LOCK_UN = 8 | 4 // unlock } afc_lock_op_t; -struct afc_client_int; -typedef struct afc_client_int *afc_client_t; +typedef struct afc_client_private afc_client_private; +typedef afc_client_private *afc_client_t; /**< The client handle. */ /* Interface */ afc_error_t afc_client_new(idevice_t device, uint16_t port, afc_client_t *client); -- cgit v1.1-32-gdbae