/trunk/AtomCommon/v0000/winapi/dll_kernel32_char.pas

http://litwrd.googlecode.com/ · Pascal · 172 lines · 120 code · 16 blank · 36 comment · 0 complexity · aef71f62ed76ffca3b260c722d1640c2 MD5 · raw file

  1. {$IFDEF FREEPASCAL}
  2. {$MODE DELPHI}
  3. {$ENDIF}
  4. unit dll_kernel32_char;
  5. interface
  6. uses
  7. atmcmbaseconst, winconst, wintype;
  8. const
  9. { Str Length Maximums. }
  10. MAX_LEADBYTES = 12; { 5 ranges, 2 bytes ea., 0 term. }
  11. MAX_DEFAULTCHAR = 2; { single or double byte }
  12. type
  13. PCPInfo = ^TCPInfo;
  14. _cpinfo = record
  15. MaxCharSize : UINT; { max length (bytes) of a char }
  16. DefaultChar : array[0..MAX_DEFAULTCHAR - 1] of Byte; { default character }
  17. LeadByte : array[0..MAX_LEADBYTES - 1] of Byte; { lead byte ranges }
  18. end;
  19. TCPInfo = _cpinfo;
  20. CPINFO = _cpinfo;
  21. PNumberFmtA = ^TNumberFmtA;
  22. PNumberFmt = PNumberFmtA;
  23. _numberfmtA = packed record
  24. NumDigits : UINT; { number of decimal digits }
  25. LeadingZero : UINT; { if leading zero in decimal fields }
  26. Grouping : UINT; { group size left of decimal }
  27. lpDecimalSep : PAnsiChar; { ptr to decimal separator AnsiStr }
  28. lpThousandSep : PAnsiChar; { ptr to thousand separator AnsiStr }
  29. NegativeOrder : UINT; { negative number ordering }
  30. end;
  31. _numberfmt = _numberfmtA;
  32. TNumberFmtA = _numberfmtA;
  33. TNumberFmt = TNumberFmtA;
  34. NUMBERFMTA = _numberfmtA;
  35. NUMBERFMT = NUMBERFMTA;
  36. PCurrencyFmtA = ^TCurrencyFmtA;
  37. PCurrencyFmt = PCurrencyFmtA;
  38. _currencyfmtA = packed record
  39. NumDigits: UINT; { number of decimal digits }
  40. LeadingZero: UINT; { if leading zero in decimal fields }
  41. Grouping: UINT; { group size left of decimal }
  42. lpDecimalSep: PAnsiChar; { ptr to decimal separator AnsiStr }
  43. lpThousandSep: PAnsiChar; { ptr to thousand separator AnsiStr }
  44. NegativeOrder: UINT; { negative currency ordering }
  45. PositiveOrder: UINT; { positive currency ordering }
  46. lpCurrencySymbol: PAnsiChar; { ptr to currency symbol AnsiStr }
  47. end;
  48. _currencyfmt = _currencyfmtA;
  49. TCurrencyFmtA = _currencyfmtA;
  50. TCurrencyFmt = TCurrencyFmtA;
  51. CURRENCYFMTA = _currencyfmtA;
  52. CURRENCYFMT = CURRENCYFMTA;
  53. { Code Page Dependent APIs. }
  54. function IsValidCodePage(CodePage: UINT): BOOL; stdcall; external kernel32 name 'IsValidCodePage';
  55. function GetACP: UINT; stdcall; external kernel32 name 'GetACP';
  56. function GetOEMCP: UINT; stdcall; external kernel32 name 'GetOEMCP';
  57. function GetCPInfo(CodePage: UINT; var lpCPInfo: TCPInfo): BOOL; stdcall; external kernel32 name 'GetCPInfo';
  58. function IsDBCSLeadByte(TestChar: Byte): BOOL; stdcall; external kernel32 name 'IsDBCSLeadByte';
  59. function IsDBCSLeadByteEx(CodePage: UINT; TestChar: Byte): BOOL; stdcall; external kernel32 name 'IsDBCSLeadByteEx';
  60. // CP_UTF7
  61. // winconst_char.pas
  62. // CodePage???????????????????????????????????????????????????????
  63. // CP_ACP?ANSI????
  64. // CP_MACCP?Macintosh????
  65. // CP_OEMCP?OEM????
  66. //? CP_SYMBOL???????42??
  67. // CP_THREAD_ACP?????ANSI????
  68. //? CP_UTF7???UTF-7???
  69. // CP_UTF8???UTF-8??
  70. //dwFlags????????????????????????????????
  71. // ???????????????????????????????????????????????
  72. // MB_PRECOMPOSED??????????????????????????????????????????????????????????
  73. // MB_COMPOSITE??????
  74. // MB_COMPOSITE???????????????????????????????????????????????MB_PRECOMPOSED??????
  75. // MB_ERR_INVALID_CHARS???????????????????????GetLastErro??ERROR_NO_UNICODE_TRANSLATION??
  76. // MB_USEGLYPHCHARS??????????????
  77. function MultiByteToWideChar(CodePage: UINT; dwFlags: DWORD;
  78. const lpMultiByteStr: LPCSTR; cchMultiByte: Integer;
  79. lpWideCharStr: LPWSTR; cchWideChar: Integer): Integer; stdcall; external kernel32 name 'MultiByteToWideChar';
  80. function WideCharToMultiByte(CodePage: UINT; dwFlags: DWORD;
  81. lpWideCharStr: LPWSTR; cchWideChar: Integer; lpMultiByteStr: LPSTR;
  82. cchMultiByte: Integer; lpDefaultChar: LPCSTR; lpUsedDefaultChar: PBOOL): Integer; stdcall; external kernel32 name 'WideCharToMultiByte';
  83. { Locale Dependent APIs. }
  84. const
  85. CSTR_LESS_THAN = 1; { str 1 less than str 2 }
  86. CSTR_EQUAL = 2; { str 1 equal to str 2 }
  87. CSTR_GREATER_THAN = 3; { str 1 greater than str 2 }
  88. function CompareStr(Locale: LCID; dwCmpFlags: DWORD; lpStr1: PAnsiChar;
  89. cchCount1: Integer; lpStr2: PAnsiChar; cchCount2: Integer): Integer; stdcall; external kernel32 name 'CompareStringA';
  90. function LCMapStr(Locale: LCID; dwMapFlags: DWORD; lpSrcStr: PAnsiChar;
  91. cchSrc: Integer; lpDestStr: PAnsiChar; cchDest: Integer): Integer; stdcall; external kernel32 name 'LCMapStringA';
  92. function GetTimeFormat(Locale: LCID; dwFlags: DWORD; lpTime: PSystemTime;
  93. lpFormat: PAnsiChar; lpTimeStr: PAnsiChar; cchTime: Integer): Integer; stdcall; external kernel32 name 'GetTimeFormatA';
  94. function GetDateFormat(Locale: LCID; dwFlags: DWORD; lpDate: PSystemTime;
  95. lpFormat: PAnsiChar; lpDateStr: PAnsiChar; cchDate: Integer): Integer; stdcall; external kernel32 name 'GetDateFormatA';
  96. function GetNumberFormat(Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
  97. lpFormat: PNumberFmt; lpNumberStr: PAnsiChar; cchNumber: Integer): Integer; stdcall; external kernel32 name 'GetNumberFormatA';
  98. function GetCurrencyFormat(Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
  99. lpFormat: PCurrencyFmt; lpCurrencyStr: PAnsiChar; cchCurrency: Integer): Integer; stdcall; external kernel32 name 'GetCurrencyFormatA';
  100. // function EnumCalendarInfo(lpCalInfoEnumProc: TFNCalInfoEnumProc; Locale: LCID;
  101. // Calendar: CALID; CalType: CALTYPE): BOOL; stdcall;
  102. function GetStrTypeEx(Locale: LCID; dwInfoType: DWORD; lpSrcStr: PAnsiChar;
  103. cchSrc: Integer; var lpCharType): BOOL; stdcall; external kernel32 name 'GetStringTypeExA';
  104. function GetStrTypeA(Locale: LCID; dwInfoType: DWORD; const lpSrcStr: LPCSTR;
  105. cchSrc: BOOL; var ACharType: Word): BOOL; stdcall; external kernel32 name 'GetStringTypeA';
  106. function FoldStr(dwMapFlags: DWORD; lpSrcStr: PAnsiChar; cchSrc: Integer;
  107. lpDestStr: PAnsiChar; cchDest: Integer): Integer; stdcall; external kernel32 name 'FoldStringA';
  108. { LPWSTR pMessage = L"%1!*.*s! %3 %4!*s!";
  109. FormatMessage(FORMAT_MESSAGE_FROM_STR |
  110. FORMAT_MESSAGE_ALLOCATE_BUFFER,
  111. pMessage,
  112. 0,
  113. 0,
  114. (LPWSTR)&pBuffer,
  115. 0,
  116. &args); }
  117. function FormatMessage(dwFlags: DWORD; lpSource: Pointer; dwMessageId: DWORD; dwLanguageId: DWORD;
  118. lpBuffer: PAnsiChar; nSize: DWORD; Arguments: Pointer): DWORD; stdcall; external kernel32 name 'FormatMessageA';
  119. type
  120. TwDLLKernel_Char = record
  121. IsValidCodePage : function (CodePage: UINT): BOOL; stdcall;
  122. GetACP : function : UINT; stdcall;
  123. GetOEMCP : function : UINT; stdcall;
  124. GetCPInfo : function (CodePage: UINT; var lpCPInfo: TCPInfo): BOOL; stdcall;
  125. IsDBCSLeadByte : function (TestChar: Byte): BOOL; stdcall;
  126. IsDBCSLeadByteEx: function (CodePage: UINT; TestChar: Byte): BOOL; stdcall;
  127. MultiByteToWideChar: function (CodePage: UINT; dwFlags: DWORD; const lpMultiByteStr: LPCSTR;
  128. cchMultiByte: Integer; lpWideCharStr: LPWSTR; cchWideChar: Integer): Integer; stdcall;
  129. WideCharToMultiByte: function (CodePage: UINT; dwFlags: DWORD; lpWideCharStr: LPWSTR;
  130. cchWideChar: Integer; lpMultiByteStr: LPSTR; cchMultiByte: Integer; lpDefaultChar: LPCSTR;
  131. lpUsedDefaultChar: PBOOL): Integer; stdcall;
  132. CompareStr : function (Locale: LCID; dwCmpFlags: DWORD; lpStr1: PAnsiChar; cchCount1: Integer;
  133. lpStr2: PAnsiChar; cchCount2: Integer): Integer; stdcall;
  134. LCMapStr : function (Locale: LCID; dwMapFlags: DWORD; lpSrcStr: PAnsiChar;
  135. cchSrc: Integer; lpDestStr: PAnsiChar; cchDest: Integer): Integer; stdcall;
  136. GetTimeFormat : function (Locale: LCID; dwFlags: DWORD; lpTime: PSystemTime;
  137. lpFormat: PAnsiChar; lpTimeStr: PAnsiChar; cchTime: Integer): Integer; stdcall;
  138. GetDateFormat : function (Locale: LCID; dwFlags: DWORD; lpDate: PSystemTime;
  139. lpFormat: PAnsiChar; lpDateStr: PAnsiChar; cchDate: Integer): Integer; stdcall;
  140. GetNumberFormat : function (Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
  141. lpFormat: PNumberFmt; lpNumberStr: PAnsiChar; cchNumber: Integer): Integer; stdcall;
  142. GetCurrencyFormat: function (Locale: LCID; dwFlags: DWORD; lpValue: PAnsiChar;
  143. lpFormat: PCurrencyFmt; lpCurrencyStr: PAnsiChar; cchCurrency: Integer): Integer; stdcall;
  144. // EnumCalendarInfo: function (lpCalInfoEnumProc: TFNCalInfoEnumProc; Locale: LCID;
  145. // Calendar: CALID; CalType: CALTYPE): BOOL; stdcall;
  146. GetStrTypeEx : function (Locale: LCID; dwInfoType: DWORD; lpSrcStr: PAnsiChar;
  147. cchSrc: Integer; var lpCharType): BOOL; stdcall;
  148. GetStrTypeA : function (Locale: LCID; dwInfoType: DWORD; const lpSrcStr: LPCSTR;
  149. cchSrc: BOOL; var ACharType: Word): BOOL; stdcall;
  150. FoldStr : function (dwMapFlags: DWORD; lpSrcStr: PAnsiChar; cchSrc: Integer;
  151. lpDestStr: PAnsiChar; cchDest: Integer): Integer; stdcall;
  152. FormatMessage : function (dwFlags: DWORD; lpSource: Pointer; dwMessageId: DWORD;
  153. dwLanguageId: DWORD; lpBuffer: PAnsiChar; nSize: DWORD; Arguments: Pointer): DWORD; stdcall;
  154. end;
  155. implementation
  156. end.