// printoem.h
typedef enum _EATTRIBUTE_DATATYPE {
kADT_UNKNOWN,
kADT_BOOL,
kADT_INT,
kADT_LONG,
kADT_DWORD,
kADT_ASCII,
kADT_UNICODE,
kADT_BINARY,
kADT_SIZE,
kADT_RECT,
kADT_CUSTOMSIZEPARAMS
} EATTRIBUTE_DATATYPE;
View the official Windows Driver Kit DDI referenceNo description available.
EATTRIBUTE_DATATYPE enumerates the possible data types for a global attribute, feature attribute or option attribute.
kADT_UNKNOWNThe attribute is of unknown type.
kADT_BOOLThe attribute is of type BOOL.
kADT_INTThe attribute is of type INT.
kADT_LONGThe attribute is of type LONG.
kADT_DWORDThe attribute is of type DWORD.
kADT_ASCIIThe attribute is an ASCII string.
kADT_UNICODEThe attribute is a Unicode string.
kADT_BINARYThe attribute consists of binary data.
kADT_SIZEThe attribute is of type SIZE.
kADT_RECTThe attribute is of type RECT.
kADT_CUSTOMSIZEPARAMSThe attribute is an array containing CUSTOMPARAM_MAX (a constant defined in printoem.h) elements. Each element is a CUSTOMSIZEPARAM structure.