windows.cfg: Improved support for Windows types (ref. https://msdn.microsoft.com/en-us/library/windows/desktop/aa383751(v=vs.85).aspx ).
This commit is contained in:
parent
ce50df8047
commit
3e3a8af267
|
@ -66,6 +66,12 @@
|
|||
<platform type="win32W"/>
|
||||
<platform type="win64"/>
|
||||
</platformtype>
|
||||
<platformtype name="DWORDLONG" value="__int64">
|
||||
<unsigned/>
|
||||
<platform type="win32A"/>
|
||||
<platform type="win32W"/>
|
||||
<platform type="win64"/>
|
||||
</platformtype>
|
||||
<platformtype name="DWORD" value="long">
|
||||
<unsigned/>
|
||||
<platform type="win32A"/>
|
||||
|
@ -5241,6 +5247,8 @@ HFONT CreateFont(
|
|||
<define name="FillMemory" value="RtlFillMemory"/>
|
||||
<define name="ZeroMemory" value="RtlZeroMemory"/>
|
||||
<define name="SecureZeroMemory" value="RtlSecureZeroMemory"/>
|
||||
<define name="CALLBACK" value="__stdcall"/>
|
||||
<define name="CONST" value="const"/>
|
||||
<!-- WORD MAKEWORD(BYTE bLow, BYTE bHigh); -->
|
||||
<define name="MAKEWORD(bLow, bHigh)" value="((WORD)(((BYTE)(((DWORD_PTR)(bLow)) & 0xff)) | ((WORD)((BYTE)(((DWORD_PTR)(bHigh)) & 0xff))) << 8))"/>
|
||||
<!-- DWORD MAKELONG(WORD wLow, WORD wHigh); -->
|
||||
|
|
Loading…
Reference in New Issue