Differences From Artifact [0c3b20b2cde333d2]:
- File
src/win32/msacm.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 [7ba0b5397a09dc08]:
- File
src/win32/msacm.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.
8 8 * *
9 9 * Placed into public domain *
10 10 \***********************************************************************/
11 11 module win32.msacm;
12 12
13 13 private import win32.basetsd, win32.mmsystem, win32.windef;
14 14
15 -alias HANDLE HACMDRIVERID, HACMDRIVER;
16 -alias HANDLE* LPHACMDRIVER;
15 +mixin DECLARE_HANDLE!("HACMDRIVERID");
16 +mixin DECLARE_HANDLE!("HACMDRIVER");
17 +alias HACMDRIVER* LPHACMDRIVER;
17 18
18 19 /* Comment from MinGW
19 20 found through experimentation
20 21 */
21 22 const size_t
22 23 ACMDRIVERDETAILS_SHORTNAME_CHARS = 32,
23 24 ACMDRIVERDETAILS_LONGNAME_CHARS = 128,