mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-15 19:19:24 +02:00
+ added the application termination win16api functions and constants
git-svn-id: trunk@31716 -
This commit is contained in:
parent
475c24670b
commit
dde243e4e5
rtl/win16
@ -785,3 +785,7 @@ function CallMsgFilter(lpmsg: LPMSG; nCode: SmallInt): BOOL; external 'USER';
|
||||
{$ifdef VAR_PARAMS_ARE_FAR}
|
||||
function CallMsgFilter(var msg: MSG; nCode: SmallInt): BOOL; external 'USER';
|
||||
{$endif}
|
||||
|
||||
{ Application termination }
|
||||
|
||||
procedure PostQuitMessage(nExitCode: SmallInt); external 'USER';
|
||||
|
@ -1351,3 +1351,11 @@ const
|
||||
{ Coalescing messages }
|
||||
WM_COALESCE_FIRST = $0390;
|
||||
WM_COALESCE_LAST = $039F;
|
||||
|
||||
{ Application termination }
|
||||
WM_QUERYENDSESSION = $0011;
|
||||
WM_ENDSESSION = $0016;
|
||||
|
||||
WM_QUIT = $0012;
|
||||
|
||||
WM_SYSTEMERROR = $0017;
|
||||
|
Loading…
Reference in New Issue
Block a user