1XtGetKeysymTable(3)              XT FUNCTIONS              XtGetKeysymTable(3)
2
3
4

NAME

6       XtGetKeysymTable, XtKeysymToKeycodeList - query keysyms and keycodes
7

SYNTAX

9       #include <X11/Intrinsic.h>
10
11       KeySym* XtGetKeysymTable(Display* display, KeyCode* min_keycode_return,
12              int *keysyms_per_keycode_return);
13
14       void XtKeysymToKeycodeList(Display* display, KeySym keysym, KeyCode**
15              keycodes_return, Cardinal* keycount_return);
16

ARGUMENTS

18       display   Specifies the display whose table is required.
19
20       min_keycode_return
21                 Returns the minimum KeyCode valid for the display.
22
23       keysyms_per_keycode_return
24              Returns the number of KeySyms stored for each KeyCode.
25
26       keysym    Specifies the KeySym for which to search.
27
28       keycodes_return
29                 Returns a list of KeyCodes that have keysym associated with
30                 them, or NULL if keycount_return is 0.
31
32       keycount_return
33                 Returns the number of KeyCodes in the keycode list.
34

DESCRIPTION

36       XtGetKeysymTable returns a pointer to the Intrinsics' copy of the
37       server's KeyCode-to-KeySym table.  This table must not be modified.
38
39       The XtKeysymToKeycodeList procedure returns all the KeyCodes that have
40       keysym in their entry for the keyboard mapping table associated with
41       display.  The caller should free the storage pointed to by key‐
42       codes_return using XtFree when it is no longer useful.
43

SEE ALSO

45       X Toolkit Intrinsics - C Language Interface
46       Xlib - C Language X Interface
47
48
49
50X Version 11                      libXt 1.2.0              XtGetKeysymTable(3)
Impressum