1 2#ifndef _KEY_H_ 3#define _KEY_H_ 4 5#include <X11/Xlib.h> 6#include <X11/Xresource.h> 7 8#ifndef NEEDKTABLE 9extern const unsigned char _XkeyTable[]; 10#endif 11 12extern int 13_XKeyInitialize( 14 Display *dpy); 15 16extern XrmDatabase 17_XInitKeysymDB( 18 void); 19 20#endif /* _KEY_H_ */ 21