Differences From Artifact [7851c6cbb4e9f088]:
- File
src/win32/ntdef.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 [3183d8d941c5427d]:
- File
src/win32/ntdef.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.
43 43 alias int* PNTSTATUS;
44 44
45 45 struct UNICODE_STRING {
46 46 USHORT Length;
47 47 USHORT MaximumLength;
48 48 PWSTR Buffer;
49 49 }
50 -alias UNICODE_STRING* PUNICODE_STRING;
51 -alias CPtr!(UNICODE_STRING) PCUNICODE_STRING;
50 +alias UNICODE_STRING* PUNICODE_STRING;
51 +alias const(UNICODE_STRING)* PCUNICODE_STRING;
52 52
53 53 struct STRING {
54 54 USHORT Length;
55 55 USHORT MaximumLength;
56 56 PCHAR Buffer;
57 57 }
58 58 alias STRING ANSI_STRING, OEM_STRING;