PostQuitMessage.3w

Langue: en

Version: Jun 2009 (debian - 07/07/09)

Section: 3 (Bibliothèques de fonctions)

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

Defined in "winuser.h".

Implemented in "dlls/user32/message.c".

Debug channel "msg".