Go to the source code of this file.
◆ keysym2ucs()
long keysym2ucs |
( |
KeySym |
keysym | ) |
|
Definition at line 818 of file keysym2ucs.c.
819{
822 int mid;
823
824
825 if ((keysym >= 0x0020 && keysym <= 0x007e) ||
826 (keysym >= 0x00a0 && keysym <= 0x00ff))
827 return keysym;
828
829
830 if ((keysym & 0xff000000) == 0x01000000)
831 return keysym & 0x00ffffff;
832
833
840 else {
841
843 }
844 }
845
846
847 return -1;
848}
static float max(float r, float g, float b)
static float min(float r, float g, float b)
struct codepair keysymtab[]
◆ keysymtab