mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 09:46:12 +02:00
* Some fixes and additions by Vasil Maximov.
git-svn-id: trunk@11578 -
This commit is contained in:
parent
f020a0a669
commit
9015e06907
@ -248,7 +248,6 @@
|
|||||||
50 GetHeapSnapshot
|
50 GetHeapSnapshot
|
||||||
37D GetKPhys
|
37D GetKPhys
|
||||||
405 GetKeyboardTarget
|
405 GetKeyboardTarget
|
||||||
4C3 GetMessageQueueReadyTimeStamp
|
|
||||||
4B7 GetMessageWNoWait
|
4B7 GetMessageWNoWait
|
||||||
30B GetModuleInformation
|
30B GetModuleInformation
|
||||||
665 GetMonitorInfo
|
665 GetMonitorInfo
|
||||||
@ -2343,6 +2342,7 @@ function GetMenuItemInfoW(_para1:HMENU; _para2:UINT; _para3:WINBOOL; _para4:LPME
|
|||||||
function GetMessage(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
|
function GetMessage(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
|
||||||
function GetMessageW(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
|
function GetMessageW(lpMsg:LPMSG; hWnd:HWND; wMsgFilterMin:UINT; wMsgFilterMax:UINT):WINBOOL; external KernelDLL name 'GetMessageW';
|
||||||
function GetMessagePos:DWORD; external KernelDLL name 'GetMessagePos';
|
function GetMessagePos:DWORD; external KernelDLL name 'GetMessagePos';
|
||||||
|
function GetMessageQueueReadyTimeStamp(hWnd:HWND):DWORD; external KernelDLL name 'GetMessageQueueReadyTimeStamp'; // index 4C3
|
||||||
function GetMessageSource:UINT; external KernelDLL name 'GetMessageSource';// index 4BF
|
function GetMessageSource:UINT; external KernelDLL name 'GetMessageSource';// index 4BF
|
||||||
function GetModuleFileName(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
|
function GetModuleFileName(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
|
||||||
function GetModuleFileNameW(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
|
function GetModuleFileNameW(hModule:HMODULE; lpFilename:LPWSTR; nSize:DWORD):DWORD; external KernelDLL name 'GetModuleFileNameW';
|
||||||
@ -2373,7 +2373,7 @@ function GetProcAddressW(hModule:HINST; lpProcName:LPCWSTR):FARPROC; external Ke
|
|||||||
function GetProcessHeap:HANDLE; external KernelDLL name 'GetProcessHeap';
|
function GetProcessHeap:HANDLE; external KernelDLL name 'GetProcessHeap';
|
||||||
function GetProcessVersion(ProcessId:DWORD):DWORD; external KernelDLL name 'GetProcessVersion'; // index 32F
|
function GetProcessVersion(ProcessId:DWORD):DWORD; external KernelDLL name 'GetProcessVersion'; // index 32F
|
||||||
function GetDllVersion(hMod:HMODULE):DWORD;
|
function GetDllVersion(hMod:HMODULE):DWORD;
|
||||||
function GetProp(hWnd:HWND; lpString:LPCWSTR):HWND; external KernelDLL name 'GetProp';
|
function GetProp(hWnd:HWND; lpString:LPCWSTR):HANDLE; external KernelDLL name 'GetProp';
|
||||||
function GetQueueStatus(flags:UINT):DWORD; external KernelDLL name 'GetQueueStatus';
|
function GetQueueStatus(flags:UINT):DWORD; external KernelDLL name 'GetQueueStatus';
|
||||||
function GetRegionData(_para1:HRGN; _para2:DWORD; _para3:LPRGNDATA):DWORD; external KernelDLL name 'GetRegionData';
|
function GetRegionData(_para1:HRGN; _para2:DWORD; _para3:LPRGNDATA):DWORD; external KernelDLL name 'GetRegionData';
|
||||||
function GetRgnBox(_para1:HRGN; _para2:LPRECT):longint; external KernelDLL name 'GetRgnBox';
|
function GetRgnBox(_para1:HRGN; _para2:LPRECT):longint; external KernelDLL name 'GetRgnBox';
|
||||||
|
@ -5758,6 +5758,12 @@ const
|
|||||||
INPUT_KEYBOARD = 1;
|
INPUT_KEYBOARD = 1;
|
||||||
INPUT_HARDWARE = 2;
|
INPUT_HARDWARE = 2;
|
||||||
|
|
||||||
|
// Constants used by GetMessageSource function.
|
||||||
|
const
|
||||||
|
MSGSRC_UNKNOWN = 0;
|
||||||
|
MSGSRC_SOFTWARE_POST = 1;
|
||||||
|
MSGSRC_HARDWARE_KEYBOARD = 2;
|
||||||
|
|
||||||
{$endif read_interface}
|
{$endif read_interface}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user