2001-09-22 11:45:12 +00:00
|
|
|
#ifndef STV5730_H
|
|
|
|
|
#define STV5730_H
|
|
|
|
|
|
2005-07-02 13:38:51 +00:00
|
|
|
MODULE_EXPORT int stv5730_init (Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void stv5730_close (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int stv5730_width (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int stv5730_height (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int stv5730_cellwidth (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int stv5730_cellheight (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void stv5730_clear (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void stv5730_flush (Driver *drvthis);
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void stv5730_string (Driver *drvthis, int x, int y, const char string[]);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void stv5730_chr (Driver *drvthis, int x, int y, char c);
|
2011-02-10 22:48:57 +00:00
|
|
|
MODULE_EXPORT void stv5730_vbar(Driver *drvthis, int x, int y, int len, int promille, int options);
|
|
|
|
|
MODULE_EXPORT void stv5730_hbar (Driver *drvthis, int x, int y, int len, int promille, int options);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void stv5730_num (Driver *drvthis, int x, int num);
|
2011-02-10 22:48:57 +00:00
|
|
|
MODULE_EXPORT int stv5730_icon(Driver *drvthis, int x, int y, int icon);
|
2001-09-22 11:45:12 +00:00
|
|
|
|
|
|
|
|
#endif
|