commit | c60d70ccb763754caebf5f107ec1b92c51d3ff3b | [log] [tgz] |
---|---|---|
author | Nikias Bassen <nikias@gmx.li> | Tue Oct 22 14:53:55 2024 +0200 |
committer | Nikias Bassen <nikias@gmx.li> | Tue Oct 22 14:53:55 2024 +0200 |
tree | 057c8ffad22489fa043f5fd2a32b36f0dfa20bd9 | |
parent | 881102944edf36abc98539b10d13e2375fda88cf [diff] |
win32: Add missing include for Sleep
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