this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

IOKit: more USB properties

+8
+8
src/IOKit/io_device_usb.cpp
··· 8 8 property_mapping{ CFSTR("VendorID"), nullptr, "idVendor", property_mapping::Number16 }, 9 9 property_mapping{ CFSTR("ProductID"), nullptr, "idProduct", property_mapping::Number16 }, 10 10 property_mapping{ CFSTR("bInterfaceClass"), nullptr, "bInterfaceClass", property_mapping::Number16 }, 11 + property_mapping{ CFSTR("bInterfaceNumber"), nullptr, "bInterfaceNumber", property_mapping::Number16 }, 11 12 property_mapping{ CFSTR("bDeviceClass"), nullptr, "bDeviceClass", property_mapping::Number16 }, 13 + property_mapping{ CFSTR("bDeviceSubClass"), nullptr, "bDeviceSubClass", property_mapping::Number16 }, 14 + property_mapping{ CFSTR("bDeviceProtocol"), nullptr, "bDeviceProtocol", property_mapping::Number16 }, 15 + property_mapping{ CFSTR("bMaxPacketSize0"), nullptr, "bMaxPacketSize0", property_mapping::Number10 }, 16 + property_mapping{ CFSTR("bNumConfigurations"), nullptr, "bNumConfigurations", property_mapping::Number10 }, 17 + property_mapping{ CFSTR("bNumEndpoints"), nullptr, "bNumEndpoints", property_mapping::Number10 }, 18 + property_mapping{ CFSTR("bConfigurationValue"), nullptr, "bConfigurationValue", property_mapping::Number10 }, 19 + property_mapping{ CFSTR("bcdDevice"), nullptr, "bcdDevice", property_mapping::Number16 }, 12 20 }; 13 21 14 22