commit | b7e9aee1acf27fc98cb37ed69c05da71b4c3c69b | [log] [tgz] |
---|---|---|
author | scroggo <scroggo@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Mar 15 15:15:15 2011 +0000 |
committer | scroggo <scroggo@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Mar 15 15:15:15 2011 +0000 |
tree | 6c4632a54f7ccce0b153305f8959f6c5c3df73a6 | |
parent | 59a190bcab5d4b2bf03f8f10cb6a581d19fed403 [diff] [blame] |
Add a sample application that runs on unix. git-svn-id: http://skia.googlecode.com/svn/trunk@938 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/utils/unix/keysym2ucs.h b/include/utils/unix/keysym2ucs.h new file mode 100644 index 0000000..1ae6fe4 --- /dev/null +++ b/include/utils/unix/keysym2ucs.h
@@ -0,0 +1,8 @@ +/* + * This module converts keysym values into the corresponding ISO 10646-1 + * (UCS, Unicode) values. + */ + +#include <X11/X.h> + +long keysym2ucs(KeySym keysym);