// hidpi.h
typedef struct _HIDP_EXTENDED_ATTRIBUTES {
UCHAR NumGlobalUnknowns;
UCHAR Reserved[3];
PHIDP_UNKNOWN_TOKEN GlobalUnknowns;
ULONG Data[1];
} HIDP_EXTENDED_ATTRIBUTES, *PHIDP_EXTENDED_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
The HIDP_EXTENDED_ATTRIBUTES structure contains information about the global items specified for a HID control that the HID parser did not recognize.
NumGlobalUnknownsSpecifies the number of HIDP_UNKNOWN_TOKEN structures in the list specified by Data.
ReservedReserved for internal system use only.
GlobalUnknownsReserved for internal system use only.
DataSpecifies the memory location where HidP_GetExtendedAttributes returns a variable length array of HIDP_UNKNOWN_TOKEN structures.
The HIDP_EXTENDED_ATTRIBUTES structure is designed to be used with HidP_GetExtendedAttributes.