.
C# Definition:
enum USB_DEVICE_SPEED : byte
{
UsbLowSpeed,
UsbFullSpeed,
UsbHighSpeed
}
VB Definition:
Enum USB_DEVICE_SPEED
TODO
End Enum
Notes:
Defined as a UCHAR (or byte)
typedef enum _USB_DEVICE_SPEED {
UsbLowSpeed = 0,
UsbFullSpeed,
UsbHighSpeed
} USB_DEVICE_SPEED;
Used with DeviceIoControl and [IOCTL_USB_GET_NODE_CONNECTION_INFORMATION_EX] to retrieve information about a port connection on a USB Hub
11/5/2009 1:32:10 PM - egray1@hot.rr.com-24.26.210.211
