◄Up► ◄Next► ◄Previous► ──────────────────────────────────────────────────────────────────────────── #define INCL_WINMESSAGEMGR typedef struct _MQINFO { /* mqi */ USHORT cb; PID pid; TID tid; USHORT cmsgs; PVOID pReserved; } MQINFO; The MQINFO structure contains information about a message queue. Field Description ──────────────────────────────────────────────────────────────────────────── cb Specifies the length of the structure (in bytes). pid Specifies the process identifier of the process that created the message queue. tid Specifies the thread identifier of the thread that created the message queue. cmsgs Specifies the maximum number of messages that can be held in the queue. pReserved Specifies a reserved value. See Also WinQueryQueueInfo ♦