xref: /haiku/src/bin/listusb/listusb.h (revision e81a954787e50e56a7f06f72705b7859b6ab06d1)
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 DumpAudioDescriptor(const usb_generic_descriptor* descriptor, int subclass);
20 void DumpVideoDescriptor(const usb_generic_descriptor* descriptor, int subclass);
21 
22 
23 #endif /* !LISTUSB_H */
24