1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_PROTOCOL_USB_KEY_CODES_H_
6 #define REMOTING_PROTOCOL_USB_KEY_CODES_H_
8 // Frequently used USB key-codes (not comprehensive--add more as needed).
15 kUsbCapsLock
= 0x070039,
17 kUsbInsert
= 0x070049,
18 kUsbDelete
= 0x07004c,
19 kUsbLeftControl
= 0x0700e0,
20 kUsbLeftShift
= 0x0700e1,
21 kUsbLeftAlt
= 0x0700e2,
22 kUsbLeftOs
= 0x0700e3,
23 kUsbRightControl
= 0x0700e4,
24 kUsbRightShift
= 0x0700e5,
25 kUsbRightAlt
= 0x0700e6,
26 kUsbRightOs
= 0x0700e7
29 #endif // REMOTING_PROTOCOL_USB_KEY_CODES_H_