Group: Message and Message Queue - Library: user32
The GetQueueStatus function indicates the type of messages found in the calling thread"s message queue.
DWORD GetQueueStatus(
UINT flags // message types
); DECLARE INTEGER GetQueueStatus IN user32;
INTEGER flags flags [in] Specifies the types of messages for which to check.
The high-order word of the return value indicates the types of messages currently in the queue. The low-order word indicates the types of messages that have been added to the queue and that are still in the queue since the last call to the GetQueueStatus, GetMessage, or PeekMessage function.
Home