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.: ..." |
mNo edit summary |
||
| Line 1: | Line 1: | ||
Message-queue information structure. | Message-queue information structure. | ||
typedef struct _MQINFO { | typedef struct _MQINFO { | ||
ULONG cb; /* Length of structure. */ | ULONG cb; /* Length of structure. */ | ||
| Line 11: | Line 10: | ||
typedef MQINFO *PMQINFO; | typedef MQINFO *PMQINFO; | ||
[[Category:Data type]] | [[Category:Data type]] | ||
Latest revision as of 02:22, 18 May 2025
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;