diff options
author | Nikias Bassen | 2009-07-06 19:46:35 +0200 |
---|---|---|
committer | Martin Szulecki | 2009-07-07 20:27:57 +0200 |
commit | a1e2fec59eb7d0d2a3adbd4691b3ea2ee1302921 (patch) | |
tree | 7ec5dd7331716a33bb72fb47e8fa0a765ac89ba7 /src/NotificationProxy.h | |
parent | abb74bcae219c25cffb7e30db6a34c69dcd92f0a (diff) | |
download | libimobiledevice-a1e2fec59eb7d0d2a3adbd4691b3ea2ee1302921.tar.gz libimobiledevice-a1e2fec59eb7d0d2a3adbd4691b3ea2ee1302921.tar.bz2 |
API cleanup for NotificationProxy
Signed-off-by: Martin Szulecki <opensuse@sukimashita.com>
Diffstat (limited to 'src/NotificationProxy.h')
-rw-r--r-- | src/NotificationProxy.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/NotificationProxy.h b/src/NotificationProxy.h index afae98a..a10cde4 100644 --- a/src/NotificationProxy.h +++ b/src/NotificationProxy.h @@ -18,12 +18,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libiphone/libiphone.h" -#include "iphone.h" +#include "libiphone/notification_proxy.h" #include <glib.h> -struct iphone_np_client_int { +struct np_client_int { int sfd; GMutex *mutex; GThread *notifier; @@ -42,4 +41,4 @@ static const char *np_default_notifications[10] = { NULL }; -gpointer iphone_np_notifier( gpointer arg ); +gpointer np_notifier( gpointer arg ); |