summaryrefslogtreecommitdiffstats
path: root/src/notification_proxy.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/notification_proxy.h')
-rw-r--r--src/notification_proxy.h19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/notification_proxy.h b/src/notification_proxy.h
index 8d5cd24..595cb01 100644
--- a/src/notification_proxy.h
+++ b/src/notification_proxy.h
@@ -8,30 +8,31 @@
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
- *
+ *
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
- *
+ *
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef INOTIFICATION_PROXY_H
-#define INOTIFICATION_PROXY_H
-#include <glib.h>
+#ifndef __NOTIFICATION_PROXY_H
+#define __NOTIFICATION_PROXY_H
+#include "idevice.h"
#include "libimobiledevice/notification_proxy.h"
#include "property_list_service.h"
+#include <libimobiledevice-glue/thread.h>
struct np_client_private {
property_list_service_client_t parent;
- GMutex *mutex;
- GThread *notifier;
+ mutex_t mutex;
+ THREAD_T notifier;
};
-gpointer np_notifier(gpointer arg);
+void* np_notifier(void* arg);
#endif