1999-12-09 23:15:14 +00:00
|
|
|
/* wirz-sli.h -- Header file for LCDproc Wirz SLI driver
|
|
|
|
|
Copyright (C) 1999 Horizon Technologies-http://horizon.pair.com/
|
|
|
|
|
Written by Bryan Rittmeyer <bryanr@pair.com> - Released under GPL
|
2001-12-30 00:15:25 +00:00
|
|
|
|
1999-12-09 23:15:14 +00:00
|
|
|
LCD info: http://www.wirz.com/sli/ */
|
|
|
|
|
|
|
|
|
|
#ifndef SLI_H
|
|
|
|
|
#define SLI_H
|
|
|
|
|
|
2005-07-02 13:38:51 +00:00
|
|
|
MODULE_EXPORT int sli_init (Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void sli_close (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int sli_width (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int sli_height (Driver *drvthis);
|
2006-04-10 10:28:29 +00:00
|
|
|
MODULE_EXPORT int sli_cellwidth (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT int sli_cellheight (Driver *drvthis);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void sli_clear (Driver *drvthis);
|
|
|
|
|
MODULE_EXPORT void sli_flush (Driver *drvthis);
|
2007-04-02 21:29:53 +00:00
|
|
|
MODULE_EXPORT void sli_string (Driver *drvthis, int x, int y, const char string[]);
|
2001-12-30 00:15:25 +00:00
|
|
|
MODULE_EXPORT void sli_chr (Driver *drvthis, int x, int y, char c);
|
|
|
|
|
|
2005-07-25 17:54:07 +00:00
|
|
|
MODULE_EXPORT void sli_vbar (Driver *drvthis, int x, int y, int len, int promille, int options);
|
|
|
|
|
MODULE_EXPORT void sli_hbar (Driver *drvthis, int x, int y, int len, int promille, int options);
|
|
|
|
|
MODULE_EXPORT int sli_icon (Driver *drvthis, int x, int y, int icon);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
2011-02-13 21:19:43 +00:00
|
|
|
MODULE_EXPORT void sli_set_char (Driver *drvthis, int n, unsigned char *dat);
|
2001-12-30 00:15:25 +00:00
|
|
|
|
1999-12-09 23:15:14 +00:00
|
|
|
#endif
|