Artifact 71cde5f6219de3f25fbaa438ae45577f4ff4cf6c
- File
src/win32/basetyps.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.
/***********************************************************************\ * basetyps.d * * * * Windows API header module * * * * Translated from MinGW API for MS-Windows 3.10 * * * * Placed into public domain * \***********************************************************************/ module win32.basetyps; private import win32.windef, win32.basetsd; align(1) struct GUID { // size is 16 DWORD Data1; WORD Data2; WORD Data3; BYTE[8] Data4; } alias GUID UUID, IID, CLSID, FMTID, uuid_t; alias GUID* LPGUID, LPCLSID, LPIID; alias const(GUID)* REFGUID, REFIID, REFCLSID, REFFMTID; alias uint error_status_t, PROPID;