Jump to content

QUERYSIZE

From EDM2
Revision as of 17:49, 8 February 2020 by Martini (talk | contribs) (Created page with "This data structure is used in the GreEscape DEVESC_QUERYSIZE call. ==Example Code== <PRE> typedef struct _QUERYSIZE { ULONG cb; /* Si...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This data structure is used in the GreEscape DEVESC_QUERYSIZE call.

Example Code

typedef struct _QUERYSIZE {
  ULONG          cb;                            /*  Size of the entire structure. */
  ULONG          ulSizeNeeded;                  /*  Size returned. */
  QUERYTUPLE     aTuples[1];  /*  Start of the tuple list. */
} QUERYSIZE;

typedef QUERYSIZE *PQUERYSIZE;