xref: /haiku/headers/os/drivers/usb/USB_hid_page_usb_monitor.h (revision b6ec842de4c268c02649990c58c1f891869ca285)
1 /*
2  * Copyright 2004-2010, Haiku Inc. All Rights Reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef _USB_HID_PAGE_USB_MONITOR_H
6 #define _USB_HID_PAGE_USB_MONITOR_H
7 
8 
9 /* Reference:
10  *		HID Usage Page 0x80: USB MONITOR
11  *		USB Monitor Control Class Specification, Rev. 1.0
12  *		http://www.usb.org/developers/devclass_docs/usbmon10.pdf
13  */
14 
15 // Usage IDs
16 enum {
17 	B_HID_UID_MON_MONITOR_CONTROL = 0x01,
18 	B_HID_UID_MON_EDID_INFORMATION,
19 	B_HID_UID_MON_VDIF_INFORMATION,
20 	B_HID_UID_MON_VESA_VERSION
21 };
22 
23 
24 #endif // _USB_HID_PAGE_USB_MONITOR_H
25