WM_QUERYENDSESSION
The
WM_QUERYENDSESSION message is sent when the user chooses to end the Windows
session or when an application calls the ExitWindows
After
processing this message, Windows sends the WM_ENDSESSION
WM_QUERYENDSESSION
nSource = (UINT) wParam; // source of end-session request
fLogOff = lParam // logoff flag
Parameters
nSource
Reserved for
future use.
fLogOff
Value of lParam.
Indicates whether the user is logging off or shutting down the system.
Supported values include: ENDSESSION_LOGOFF.
Return Values
If an
application can terminate conveniently, it should return TRUE; otherwise, it
should return FALSE.
Remarks
By default,
the DefWindowProc function returns TRUE for this message.
Windows
NT: When an application returns TRUE
for this message, it receives the WM_ENDSESSION message and it is terminated,
regardless of how the other applications respond to the WM_QUERYENDSESSION
message.
Windows
95: After all applications return
TRUE for this message, they receive the WM_ENDSESSION and they are terminated.
See Also