Artifact e5e5eb8c58232f9429e8103d66d87a353c704f34
- File
src/win32/core.d
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
The problem was __gshared. Replacing it with TLS fixed the issue. Remaining problem is that "hack.d"'s CloseHandle hack is not working anymore.
(user: kinaba) [annotate]
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
/***********************************************************************\ * core.d * * * * Helper module for the Windows API * * * * Placed into public domain * \***********************************************************************/ module win32.core; /** The core Windows API functions. Importing this file is equivalent to the C code: --- #define WIN32_LEAN_AND_MEAN #include "windows.h" --- */ public import win32.windef; public import win32.winnt; public import win32.wincon; public import win32.winbase; public import win32.wingdi; public import win32.winuser; public import win32.winnls; public import win32.winver; public import win32.winnetwk; public import win32.winsvc;