// hidsdi.h
typedef struct _HIDD_ATTRIBUTES {
ULONG Size;
USHORT VendorID;
USHORT ProductID;
USHORT VersionNumber;
} HIDD_ATTRIBUTES, *PHIDD_ATTRIBUTES;
View the official Windows Driver Kit DDI referenceNo description available.
The HIDD_ATTRIBUTES structure contains vendor information about a HIDClass device.
SizeSpecifies the size, in bytes, of a HIDD_ATTRIBUTES structure.
VendorIDSpecifies a HID device's vendor ID.
ProductIDSpecifies a HID device's product ID.
VersionNumberSpecifies the manufacturer's revision number for a HIDClass device.
A caller of HidD_GetAttributes, uses this structure to obtain a device's vendor information.
Before using a HIDD_ATTRIBUTES structure with HIDClass support routines, the caller must set the Size member.