HIDD_ATTRIBUTES - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// 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 reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-hidsdi-_hidd_attributes)

_HIDD_ATTRIBUTES structure

Description

The HIDD_ATTRIBUTES structure contains vendor information about a HIDClass device.

Members

Size

Specifies the size, in bytes, of a HIDD_ATTRIBUTES structure.

VendorID

Specifies a HID device's vendor ID.

ProductID

Specifies a HID device's product ID.

VersionNumber

Specifies the manufacturer's revision number for a HIDClass device.

Remarks

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.

See also

HidD_GetAttributes