xref: /haiku/src/bin/listusb/listusb.h (revision 445d4fd926c569e7b9ae28017da86280aaecbae2)
1 /*
2  * Originally released under the Be Sample Code License.
3  * Copyright 2000, Be Incorporated. All rights reserved.
4  *
5  * Modified for Haiku by François Revol and Michael Lotz.
6  * Copyright 2007-2016, Haiku Inc. All rights reserved.
7  */
8 
9 
10 #ifndef LISTUSB_H
11 #define LISTUSB_H
12 
13 
14 #include <USBKit.h>
15 
16 
17 void DumpDescriptorData(const usb_generic_descriptor* descriptor);
18 
19 void DumpCDCDescriptor(const usb_generic_descriptor* descriptor, int subclass);
20 void DumpAudioDescriptor(const usb_generic_descriptor* descriptor, int subclass);
21 void DumpVideoDescriptor(const usb_generic_descriptor* descriptor, int subclass);
22 
23 
24 #endif /* !LISTUSB_H */
25