Files
padkey_linux/keymap.h
2013-03-31 21:52:09 +09:00

19 lines
304 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 keyCode[8 * 8];
};
extern void Keymap_initialize(struct Keymap *this);
extern int Keymap_get(struct Keymap *this, struct Code *code);
#endif