aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/threads.c
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2013-10-28 12:05:33 -0700
committerChris Robinson <[email protected]>2013-10-28 12:05:33 -0700
commitf24cb447818ea21ff5a5d80d6396abb4723fd2ed (patch)
tree3f10c96f9e11d1f0dd58501f166ba399ebdbeda8 /Alc/threads.c
parent2912d130c26056f21e938bbd776bbe8583c055cd (diff)
Move the device mutex to the backend
Diffstat (limited to 'Alc/threads.c')
-rw-r--r--Alc/threads.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Alc/threads.c b/Alc/threads.c
index 1f7e3a6c..1c422949 100644
--- a/Alc/threads.c
+++ b/Alc/threads.c
@@ -32,6 +32,9 @@
#ifdef _WIN32
+#define WIN32_LEAN_AND_MEAN
+#include <windows.h>
+
typedef struct althread_info {
ALuint (*func)(ALvoid*);
ALvoid *ptr;