Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /*
5 *
6 * This Source Code Form is subject to the terms of the Mozilla Public
7 * License, v. 2.0. If a copy of the MPL was not distributed with this
8 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
9 /*
10 * This module converts keysym values into the corresponding ISO 10646-1
11 * (UCS, Unicode) values.
12 */
14 #ifdef MOZ_X11
15 #include <X11/X.h>
16 #else
17 #define KeySym unsigned int
18 #endif /* MOZ_X11 */
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
24 long keysym2ucs(KeySym keysym);
26 #ifdef __cplusplus
27 } /* extern "C" */
28 #endif