Differences From Artifact [95bc9e92ac61060b]:
- File
src/win32/winnetwk.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 [6064424d92bdbf3b]:
- File
src/win32/winnetwk.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.
5 * * 5 * *
6 * Translated from MinGW Windows headers * 6 * Translated from MinGW Windows headers *
7 * by Stewart Gordon * 7 * by Stewart Gordon *
8 * * 8 * *
9 * Placed into public domain * 9 * Placed into public domain *
10 \***********************************************************************/ 10 \***********************************************************************/
11 module win32.winnetwk; 11 module win32.winnetwk;
12 pragma(lib, "mpr.lib"); | 12 pragma(lib, "mpr");
13 13
14 private import win32.winbase, win32.winerror, win32.winnt; 14 private import win32.winbase, win32.winerror, win32.winnt;
15 15
16 enum : DWORD { 16 enum : DWORD {
17 WNNC_NET_MSNET = 0x00010000, 17 WNNC_NET_MSNET = 0x00010000,
18 WNNC_NET_LANMAN = 0x00020000, 18 WNNC_NET_LANMAN = 0x00020000,
19 WNNC_NET_NETWARE = 0x00030000, 19 WNNC_NET_NETWARE = 0x00030000,