Files
lcdproc/server/drivers/Olimex_MOD_LCD1x9.h
T

14 lines
545 B
C
Raw Normal View History

2015-12-18 16:04:52 +02:00
#ifndef OLIMEX_LCD1x9_H
#define OLIMEX_LCD1x9_H
MODULE_EXPORT int olimex1x9_init (Driver *drvthis);
MODULE_EXPORT void olimex1x9_close (Driver *drvthis);
MODULE_EXPORT int olimex1x9_width (Driver *drvthis);
MODULE_EXPORT int olimex1x9_height (Driver *drvthis);
MODULE_EXPORT void olimex1x9_clear (Driver *drvthis);
MODULE_EXPORT void olimex1x9_flush (Driver *drvthis);
MODULE_EXPORT void olimex1x9_string (Driver *drvthis, int x, int y, const char string[]);
MODULE_EXPORT void olimex1x9_chr (Driver *drvthis, int x, int y, char c);
#endif