diff options
author | Nikias Bassen | 2009-07-06 19:46:35 +0200 |
---|---|---|
committer | Matt Colyer | 2009-07-18 10:39:42 -0700 |
commit | ab8e29dafc0577203e6867329b1d3ff9095a4fb2 (patch) | |
tree | b8b19f763cc83b0a0449b16ec4ddc626ce66a136 /src/NotificationProxy.h | |
parent | 4105af17e9f2df5405afa6a74a02a304ed6bacff (diff) | |
download | libimobiledevice-ab8e29dafc0577203e6867329b1d3ff9095a4fb2.tar.gz libimobiledevice-ab8e29dafc0577203e6867329b1d3ff9095a4fb2.tar.bz2 |
API cleanup for NotificationProxy
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 ); |