Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 1.04 KB

File metadata and controls

41 lines (28 loc) · 1.04 KB

Home

Function name : GetQueueStatus

Group: Message and Message Queue - Library: user32


The GetQueueStatus function indicates the type of messages found in the calling thread"s message queue.


Code examples:

Simulating DOEVENTS

Declaration:

DWORD GetQueueStatus(
  UINT flags   // message types
);  

FoxPro declaration:

DECLARE INTEGER GetQueueStatus IN user32;
	INTEGER flags  

Parameters:

flags [in] Specifies the types of messages for which to check.


Return value:

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.