diff options
Diffstat (limited to 'gfx/skia/skia/src/views/unix/keysym2ucs.h')
-rw-r--r-- | gfx/skia/skia/src/views/unix/keysym2ucs.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gfx/skia/skia/src/views/unix/keysym2ucs.h b/gfx/skia/skia/src/views/unix/keysym2ucs.h new file mode 100644 index 000000000..0287f02ad --- /dev/null +++ b/gfx/skia/skia/src/views/unix/keysym2ucs.h @@ -0,0 +1,14 @@ +/* + * Copyright 2011 Google Inc. + * + * Use of this source code is governed by a BSD-style license that can be + * found in the LICENSE file. + */ +/* + * This module converts keysym values into the corresponding ISO 10646-1 + * (UCS, Unicode) values. + */ + +#include <X11/X.h> + +long keysym2ucs(KeySym keysym); |