Files
padkey_linux/keymap.h
2013-04-03 00:35:44 +09:00

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