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/mobilebackup.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/libimobiledevice/mobilebackup.h') 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" { typedef int16_t mobilebackup_error_t; -struct mobilebackup_client_int; -typedef struct mobilebackup_client_int *mobilebackup_client_t; +typedef struct mobilebackup_client_private mobilebackup_client_private; +typedef mobilebackup_client_private *mobilebackup_client_t; /**< The client handle. */ mobilebackup_error_t mobilebackup_client_new(idevice_t device, uint16_t port, mobilebackup_client_t * client); mobilebackup_error_t mobilebackup_client_free(mobilebackup_client_t client); -- cgit v1.1-32-gdbae