summaryrefslogtreecommitdiffstats
path: root/src/sbservices.h
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2011-09-10 19:08:39 +0200
committerGravatar Martin Szulecki2012-03-19 01:38:54 +0100
commit475c9679716eec92e3508063b7486e3508c4c974 (patch)
tree5ab09c85387821e05b052cbb642b92ae102953ec /src/sbservices.h
parent6f29ab73053327066409744d025dcbd03fd6b627 (diff)
downloadlibimobiledevice-475c9679716eec92e3508063b7486e3508c4c974.tar.gz
libimobiledevice-475c9679716eec92e3508063b7486e3508c4c974.tar.bz2
WIN32: use windows threads and mutexes instead of pthread_*
Diffstat (limited to 'src/sbservices.h')
-rw-r--r--src/sbservices.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sbservices.h b/src/sbservices.h
index 1c85fe8..2b600ad 100644
--- a/src/sbservices.h
+++ b/src/sbservices.h
@@ -21,14 +21,22 @@
#ifndef ISBSERVICES_H
#define ISBSERVICES_H
+#ifdef WIN32
+#include <windows.h>
+#else
#include <pthread.h>
+#endif
#include "libimobiledevice/sbservices.h"
#include "property_list_service.h"
struct sbservices_client_private {
property_list_service_client_t parent;
+#ifdef WIN32
+ CRITICAL_SECTION mutex;
+#else
pthread_mutex_t mutex;
+#endif
};
#endif