/* * Released into the public domain * by Aki Goto */ #ifndef KEYMAP_H #define KEYMAP_H #include "multibutton.h" struct Keymap { int keysym[8 * 8]; }; extern void Keymap_initialize(struct Keymap *this); extern int Keymap_get(struct Keymap *this, struct Code *code); #endif