adapt style to that of CFontz633.c & CFontzPacket.c

This commit is contained in:
marschap
2005-05-29 19:10:58 +00:00
parent 4b4e7fc88c
commit 6a407f22bb
+18 -17
View File
@@ -15,24 +15,25 @@
#define DEFAULT_SIZE_CF633 "16x2" #define DEFAULT_SIZE_CF633 "16x2"
#define DEFAULT_SIZE_CF631 "20x2" #define DEFAULT_SIZE_CF631 "20x2"
MODULE_EXPORT int CFontz633_init (Driver * drvthis, char *device);
MODULE_EXPORT void CFontz633_close (Driver * drvthis);
MODULE_EXPORT int CFontz633_width (Driver * drvthis);
MODULE_EXPORT int CFontz633_height (Driver * drvthis);
MODULE_EXPORT void CFontz633_clear (Driver * drvthis);
MODULE_EXPORT void CFontz633_flush (Driver * drvthis);
MODULE_EXPORT void CFontz633_string (Driver * drvthis, int x, int y, char string[]);
MODULE_EXPORT void CFontz633_chr (Driver * drvthis, int x, int y, char c);
MODULE_EXPORT void CFontz633_vbar (Driver * drvthis, int x, int y, int len, int promille, int options); MODULE_EXPORT int CFontz633_init (Driver *drvthis, char *device);
MODULE_EXPORT void CFontz633_hbar (Driver * drvthis, int x, int y, int len, int promille, int options); MODULE_EXPORT void CFontz633_close (Driver *drvthis);
MODULE_EXPORT void CFontz633_num (Driver * drvthis, int x, int num); MODULE_EXPORT int CFontz633_width (Driver *drvthis);
MODULE_EXPORT int CFontz633_icon(Driver * drvthis, int x, int y, int icon); MODULE_EXPORT int CFontz633_height (Driver *drvthis);
MODULE_EXPORT void CFontz633_clear (Driver *drvthis);
MODULE_EXPORT void CFontz633_flush (Driver *drvthis);
MODULE_EXPORT void CFontz633_string (Driver *drvthis, int x, int y, char string[]);
MODULE_EXPORT void CFontz633_chr (Driver *drvthis, int x, int y, char c);
MODULE_EXPORT void CFontz633_set_char (Driver * drvthis, int n, char *dat); MODULE_EXPORT void CFontz633_vbar (Driver *drvthis, int x, int y, int len, int promille, int options);
MODULE_EXPORT void CFontz633_hbar (Driver *drvthis, int x, int y, int len, int promille, int options);
MODULE_EXPORT void CFontz633_num (Driver *drvthis, int x, int num);
MODULE_EXPORT int CFontz633_icon(Driver *drvthis, int x, int y, int icon);
MODULE_EXPORT int CFontz633_get_contrast (Driver * drvthis); MODULE_EXPORT void CFontz633_set_char (Driver *drvthis, int n, char *dat);
MODULE_EXPORT void CFontz633_set_contrast (Driver * drvthis, int contrast);
MODULE_EXPORT void CFontz633_backlight (Driver * drvthis, int on);
#endif MODULE_EXPORT int CFontz633_get_contrast (Driver *drvthis);
MODULE_EXPORT void CFontz633_set_contrast (Driver *drvthis, int contrast);
MODULE_EXPORT void CFontz633_backlight (Driver *drvthis, int on);
#endif /* CFONTZ633_H */