From 717b296b0906a6d84c6a161ec8ae6a2b80faf963 Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Mon, 11 May 2009 18:06:06 +0200 Subject: Fix distcheck target for swig binding generation Signed-off-by: Matt Colyer --- swig/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swig/Makefile.am b/swig/Makefile.am index 726014b..d65b984 100644 --- a/swig/Makefile.am +++ b/swig/Makefile.am @@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(includedir) +INCLUDES = -I$(top_srcdir)/include $(libplist_CFLAGS) -I$(oldincludedir) BUILT_SOURCES = iphone_wrap.c SWIG_SOURCES = iphone.i -- cgit v1.1-32-gdbae From dca1758c4f9602fc240c6a7c9ae45839e154d15f Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 12 May 2009 08:35:54 -0700 Subject: Fix some comments in mobilesync. --- src/MobileSync.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/MobileSync.c b/src/MobileSync.c index 25f9473..58d0beb 100644 --- a/src/MobileSync.c +++ b/src/MobileSync.c @@ -126,9 +126,7 @@ iphone_error_t iphone_msync_free_client(iphone_msync_client_t client) /** Polls the iPhone for MobileSync data. * * @param client The MobileSync client - * @param dump_data The pointer to the location of the buffer in which to store - * the received data - * @param recv_byhtes The number of bytes received + * @param plist A pointer to the location where the plist should be stored * * @return an error code */ @@ -174,9 +172,7 @@ iphone_error_t iphone_msync_recv(iphone_msync_client_t client, plist_t * plist) * a new type of message. * * @param client The MobileSync client - * @param raw_data The null terminated string buffer to send - * @param length The length of data to send - * @param sent_bytes The number of bytes sent + * @param plist The location of the plist to send * * @return an error code */ -- cgit v1.1-32-gdbae