12 lines
208 B
C
12 lines
208 B
C
#ifndef LCD_JOY_H
|
|
#define LCD_JOY_H
|
|
|
|
#include "lcd.h"
|
|
|
|
MODULE_EXPORT int joy_init (Driver *drvthis);
|
|
MODULE_EXPORT void joy_close (Driver *drvthis);
|
|
|
|
MODULE_EXPORT char joy_getkey (Driver *drvthis);
|
|
|
|
#endif
|