Statistics
| Branch: | Revision:

root / ui / x_keymap.h @ d4970b07

History | View | Annotate | Download (1.3 kB)

1 5368a422 aliguori
/*
2 5368a422 aliguori
 * QEMU SDL display driver
3 5368a422 aliguori
 *
4 5368a422 aliguori
 * Copyright (c) 2003 Fabrice Bellard
5 5368a422 aliguori
 *
6 5368a422 aliguori
 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 5368a422 aliguori
 * of this software and associated documentation files (the "Software"), to deal
8 5368a422 aliguori
 * in the Software without restriction, including without limitation the rights
9 5368a422 aliguori
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 5368a422 aliguori
 * copies of the Software, and to permit persons to whom the Software is
11 5368a422 aliguori
 * furnished to do so, subject to the following conditions:
12 5368a422 aliguori
 *
13 5368a422 aliguori
 * The above copyright notice and this permission notice shall be included in
14 5368a422 aliguori
 * all copies or substantial portions of the Software.
15 5368a422 aliguori
 *
16 5368a422 aliguori
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 5368a422 aliguori
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 5368a422 aliguori
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 5368a422 aliguori
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 5368a422 aliguori
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 5368a422 aliguori
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 5368a422 aliguori
 * THE SOFTWARE.
23 5368a422 aliguori
 */
24 5368a422 aliguori
25 5368a422 aliguori
#ifndef QEMU_X_KEYMAP_H
26 5368a422 aliguori
#define QEMU_X_KEYMAP_H
27 5368a422 aliguori
28 64b85a8f Blue Swirl
uint8_t translate_xfree86_keycode(const int key);
29 5368a422 aliguori
30 64b85a8f Blue Swirl
uint8_t translate_evdev_keycode(const int key);
31 5368a422 aliguori
32 5368a422 aliguori
#endif