Jump to content

QUERYSIZE: Difference between revisions

From EDM2
Created page with "This data structure is used in the GreEscape DEVESC_QUERYSIZE call. ==Example Code== <PRE> typedef struct _QUERYSIZE { ULONG cb; /* Si..."
(No difference)

Revision as of 17:49, 8 February 2020

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;