mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 01:29:29 +02:00
+ added the win16api window proc implementation and subclassing functions
git-svn-id: trunk@31736 -
This commit is contained in:
parent
c56a028e31
commit
d62c342b9c
@ -866,3 +866,10 @@ function EndDeferWindowPos(hdwp: HDWP): BOOL; external 'USER';
|
||||
|
||||
function MoveWindow(hwnd: HWND; nLeft, nTop, nWidth, nHeight: SmallInt; fRepaint: BOOL): BOOL; external 'USER';
|
||||
function BringWindowToTop(hwnd: HWND): BOOL; external 'USER';
|
||||
|
||||
{ Window proc implementation & subclassing support }
|
||||
|
||||
function DefWindowProc(hwnd: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; external 'USER';
|
||||
|
||||
function CallWindowProc(wndprcPrev: WNDPROC; hwnd: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; external 'USER';
|
||||
function CallWindowProc(wndprcPrev: TFarProc; hwnd: HWND; uMsg: UINT; wParam: WPARAM; lParam: LPARAM): LRESULT; external 'USER';
|
||||
|
Loading…
Reference in New Issue
Block a user