Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / widget / x11 / keysym2ucs.h
blobb081e27605fbc18ec1488e76e81714a928a1a862
1 /* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /*
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.
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