// wdfusb.h
typedef enum _WDF_USB_DEVICE_TRAITS {
WDF_USB_DEVICE_TRAIT_SELF_POWERED = 0x00000001,
WDF_USB_DEVICE_TRAIT_REMOTE_WAKE_CAPABLE = 0x00000002,
WDF_USB_DEVICE_TRAIT_AT_HIGH_SPEED = 0x00000004
} WDF_USB_DEVICE_TRAITS;
View the official Windows Driver Kit DDI reference
No description available.
[Applies to KMDF and UMDF]
The WDF_USB_DEVICE_TRAITS enumeration identifies USB device traits.
WDF_USB_DEVICE_TRAIT_SELF_POWERED:0x00000001
The device is self-powered.
WDF_USB_DEVICE_TRAIT_REMOTE_WAKE_CAPABLE:0x00000002
The device has a remote wakeup capability.
WDF_USB_DEVICE_TRAIT_AT_HIGH_SPEED:0x00000004
The device is operating at high speed or SuperSpeed.
The WDF_USB_DEVICE_TRAITS enumeration is used in the WDF_USB_DEVICE_INFORMATION structure.