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. --- src/idevice.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/idevice.h') 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 { CONNECTION_USBMUXD = 1 }; -struct ssl_data_int { +struct ssl_data_private { gnutls_certificate_credentials_t certificate; gnutls_session_t session; }; -typedef struct ssl_data_int *ssl_data_t; +typedef struct ssl_data_private *ssl_data_t; -struct idevice_connection_int { +struct idevice_connection_private { enum connection_type type; void *data; ssl_data_t ssl_data; }; -struct idevice_int { +struct idevice_private { char *uuid; enum connection_type conn_type; void *conn_data; -- cgit v1.1-32-gdbae