Jump to content

MQINFO: Difference between revisions

From EDM2
Ak120 (talk | contribs)
Created page with "Message-queue information structure. <code> typedef struct _MQINFO { ULONG cb; Length of structure.: PID pid; Process identity.: ..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Message-queue information structure.
Message-queue information structure.


<code>
  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;
</code>


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 03: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;