Jump to content

QUERYTUPLE: Difference between revisions

From EDM2
Created page with "This structure is used in the GreEscape DEVESC_QUERYSIZE call. It associates the type of property you are querying (ulProperty) and the kind of query you will do (DJP_ALL or D..."
 
(No difference)

Latest revision as of 16:49, 8 February 2020

This structure is used in the GreEscape DEVESC_QUERYSIZE call. It associates the type of property you are querying (ulProperty) and the kind of query you will do (DJP_ALL or DJP_CURRENT).

Example Code

typedef struct _QUERYTUPLE {
  ULONG     ulProperty;  /*  Identifies specific job property. */
  LONG      lType;       /*  Property type. */
} QUERYTUPLE;

typedef QUERYTUPLE *PQUERYTUPLE;