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.h26
1 files changed, 9 insertions, 17 deletions
diff --git a/src/notification_proxy.h b/src/notification_proxy.h
index 0f92cdf..595cb01 100644
--- a/src/notification_proxy.h
+++ b/src/notification_proxy.h
@@ -8,37 +8,29 @@
* 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
-#ifdef WIN32
-#include <windows.h>
-#else
-#include <pthread.h>
-#endif
+#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;
-#ifdef WIN32
- CRITICAL_SECTION mutex;
- HANDLE notifier;
-#else
- pthread_mutex_t mutex;
- pthread_t notifier;
-#endif
+ mutex_t mutex;
+ THREAD_T notifier;
};
void* np_notifier(void* arg);