← Continue Reading
1234567891011function EnumWindowsFunc(Handle: THandle; List: TStringList):boolean; stdcall;
var
Caption: array[0..256] of Char;
begin
if GetWindowText(Handle, Caption, SizeOf(Caption)-...
← Continue Reading
1234567Function pCharToHex(Buf:pChar;Len:Integer):String;
Var
I:Integer;
Begin
For I := 0 To Len-1 Do
Result := Result+IntToHex(Ord(Buf[I]), 2)+' ...
← Continue Reading
function GetSystemDefaultLangID: LANGID;
返回值可能有...
0x0000 Language Neutral
0x007f The language for the invariant locale (LOCALE_INVARIANT). See MAKELCID.
0x0400 Process or User Default Language...