Исправно компилируется в DLL, но нет соглашения о вызовах

This commit is contained in:
Стас Михайлов WindowsDesktop
2021-02-20 13:50:11 +03:00
parent ccfb9de3e7
commit 44809a1f56
2282 changed files with 185186 additions and 112608 deletions
+24
View File
@@ -0,0 +1,24 @@
MAXIMUM_LEADBYTES equ 12
CPTABLEINFO STRUC
CodePage USHORT ? ; code page number
MaximumCharacterSize USHORT ? ; max length (bytes) of a char
DefaultChar USHORT ? ; default character (MB)
UniDefaultChar USHORT ? ; default character (Unicode)
TransDefaultChar USHORT ? ; translation of default char (Unicode)
TransUniDefaultChar USHORT ? ; translation of Unic default char (MB)
DBCSCodePage USHORT ? ; Non 0 for DBCS code pages
LeadByte UCHAR MAXIMUM_LEADBYTES dup(?) ; lead byte ranges
Reserved BYTE 6 dup(?)
MultiByteTable PUSHORT ? ; pointer to MB translation table
WideCharTable PVOID ? ; pointer to WC translation table
DBCSRanges PUSHORT ? ; pointer to DBCS ranges
DBCSOffsets PUSHORT ? ; pointer to DBCS offsets
CPTABLEINFO ENDS
PCPTABLEINFO TYPEDEF PTR CPTABLEINFO
NLSTABLEINFO STRUC
OemTableInfo CPTABLEINFO<>
AnsiTableInfo CPTABLEINFO<>
UpperCaseTable PUSHORT ? ;844 format upcase table
LowerCaseTable PUSHORT ? ;844 format lower case table
NLSTABLEINFO ENDS
PNLSTABLEINFO TYPEDEF PTR NLSTABLEINFO