diff options
author | 2024-10-22 14:53:55 +0200 | |
---|---|---|
committer | 2024-10-22 14:53:55 +0200 | |
commit | c60d70ccb763754caebf5f107ec1b92c51d3ff3b (patch) | |
tree | 057c8ffad22489fa043f5fd2a32b36f0dfa20bd9 /src/notification_proxy.c | |
parent | 881102944edf36abc98539b10d13e2375fda88cf (diff) | |
download | libimobiledevice-c60d70ccb763754caebf5f107ec1b92c51d3ff3b.tar.gz libimobiledevice-c60d70ccb763754caebf5f107ec1b92c51d3ff3b.tar.bz2 |
win32: Add missing include for Sleep
Diffstat (limited to 'src/notification_proxy.c')
-rw-r--r-- | src/notification_proxy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/notification_proxy.c b/src/notification_proxy.c index 60b2e03..c5f29f5 100644 --- a/src/notification_proxy.c +++ b/src/notification_proxy.c @@ -32,6 +32,7 @@ #include "common/debug.h" #ifdef WIN32 +#include <windows.h> #define sleep(x) Sleep(x*1000) #endif |