diff options
author | Nikias Bassen | 2011-09-10 19:08:39 +0200 |
---|---|---|
committer | Martin Szulecki | 2012-03-19 01:38:54 +0100 |
commit | 475c9679716eec92e3508063b7486e3508c4c974 (patch) | |
tree | 5ab09c85387821e05b052cbb642b92ae102953ec /src/installation_proxy.h | |
parent | 6f29ab73053327066409744d025dcbd03fd6b627 (diff) | |
download | libimobiledevice-475c9679716eec92e3508063b7486e3508c4c974.tar.gz libimobiledevice-475c9679716eec92e3508063b7486e3508c4c974.tar.bz2 |
WIN32: use windows threads and mutexes instead of pthread_*
Diffstat (limited to 'src/installation_proxy.h')
-rw-r--r-- | src/installation_proxy.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/installation_proxy.h b/src/installation_proxy.h index 811ead6..642968d 100644 --- a/src/installation_proxy.h +++ b/src/installation_proxy.h @@ -21,15 +21,24 @@ #ifndef IINSTALLATION_PROXY_H #define IINSTALLATION_PROXY_H +#ifdef WIN32 +#include <windows.h> +#else #include <pthread.h> +#endif #include "libimobiledevice/installation_proxy.h" #include "property_list_service.h" struct instproxy_client_private { property_list_service_client_t parent; +#ifdef WIN32 + CRITICAL_SECTION mutex; + HANDLE status_updater; +#else pthread_mutex_t mutex; pthread_t status_updater; +#endif }; #endif |