From d5632cd0eb30a6022cd8b59c53e06a300b48ebb6 Mon Sep 17 00:00:00 2001 From: jgarcia Date: Sat, 14 Apr 2007 11:32:19 +0000 Subject: [PATCH] Now windows.h must be explicitely included --- src/c/threads_win32.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/threads_win32.d b/src/c/threads_win32.d index 3b6984649..c4722c037 100644 --- a/src/c/threads_win32.d +++ b/src/c/threads_win32.d @@ -24,12 +24,12 @@ * is designed to produce a DLL and we rather want a static * reference */ +#include #include extern HANDLE WINAPI GC_CreateThread( LPSECURITY_ATTRIBUTES lpThreadAttributes, DWORD dwStackSize, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, DWORD dwCreationFlags, LPDWORD lpThreadId ); - #ifndef WITH___THREAD DWORD cl_env_key; #endif