19 lines
303 B
C
19 lines
303 B
C
/*
|
|
* Released into the public domain
|
|
* by Aki Goto <tyatsumi@gmail.com>
|
|
*/
|
|
|
|
#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
|