mirror of
https://github.com/mist-devel/mist-firmware.git
synced 2026-02-18 05:03:45 +00:00
11 lines
247 B
C
11 lines
247 B
C
#ifndef IKBD_H
|
|
#define IKBD_H
|
|
|
|
void ikbd_init(void);
|
|
void ikbd_poll(void);
|
|
void ikbd_joystick(unsigned char joy, unsigned char map);
|
|
void ikbd_mouse(unsigned char buttons, char x, char y);
|
|
void ikbd_keyboard(unsigned char code);
|
|
|
|
#endif // IKBD_H
|