NAME

PostQuitMessage  (USER32.@)

SYNOPSIS

 void PostQuitMessage
 (
  INT exit_code
 )

DESCRIPTION

Posts a quit message to the current thread's message queue.

PARAMS

exit_code [In] Exit code to return from message loop.

RETURNS

Nothing.

NOTES

This function is not the same as calling:

PostThreadMessage(GetCurrentThreadId(), WM_QUIT, exit_code, 0);

It instead sets a flag in the message queue that signals it to generate a WM_QUIT message when there are no other pending sent or posted messages in the queue.

IMPLEMENTATION

Declared in "winuser.h". https://source.winehq.org/source/include/winuser.h

Implemented in "dlls/user32/message.c". https://source.winehq.org/source/dlls/user32/message.c

Debug channel "msg".


Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Apr 2024.