MQINFO: Difference between revisions
Appearance
Created page with "Message-queue information structure. <code> typedef struct _MQINFO { ULONG cb; →Length of structure.: PID pid; →Process identity.: ..." |
(No difference)
|
Revision as of 13:58, 13 December 2019
Message-queue information structure.
typedef struct _MQINFO {
ULONG cb; /* Length of structure. */
PID pid; /* Process identity. */
TID tid; /* Thread identity. */
ULONG cmsgs; /* Message count. */
PVOID pReserved; /* Reserved. */
} MQINFO;
typedef MQINFO *PMQINFO;