Differences From Artifact [4a6a27a65a3145c6]:
- File
src/win32/lmmsg.d
- 2015-04-21 10:46:55 - part of checkin [4e2933c620] on branch trunk - Rebased to the latest verson dmd 2.067. Not yet verified the outcome. (user: kinaba) [annotate]
To Artifact [df09b120755ba58c]:
- File
src/win32/lmmsg.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.
4 4 * Windows API header module *
5 5 * *
6 6 * Translated from MinGW Windows headers *
7 7 * *
8 8 * Placed into public domain *
9 9 \***********************************************************************/
10 10 module win32.lmmsg;
11 -pragma(lib, "netapi32.lib");
11 +pragma(lib, "netapi32");
12 12
13 13 private import win32.lmcons, win32.windef, win32.w32api;
14 14
15 -static assert (_WIN32_WINNT_ONLY && _WIN32_WINNT >= 0x501,
15 +static assert (_WIN32_WINNT >= 0x501,
16 16 "win32.lmmsg is available only if version WindowsXP, Windows2003 "
17 17 "or WindowsVista is set");
18 18
19 19 const MSGNAME_NOT_FORWARDED = 0;
20 20 const MSGNAME_FORWARDED_TO = 4;
21 21 const MSGNAME_FORWARDED_FROM = 16;
22 22