cleanup: 'static'ize function which are not in the API anymore

This commit is contained in:
marschap
2006-04-12 10:51:01 +00:00
parent fd2ed040f4
commit 30afa50bdf
18 changed files with 58 additions and 95 deletions
+2 -8
View File
@@ -54,8 +54,8 @@
MODULE_EXPORT int CwLnx_init(Driver * drvthis);
MODULE_EXPORT void CwLnx_close(Driver * drvthis);
/* */ MODULE_EXPORT int CwLnx_width (Driver * drvthis);
/* */ MODULE_EXPORT int CwLnx_height (Driver * drvthis);
MODULE_EXPORT int CwLnx_width (Driver * drvthis);
MODULE_EXPORT int CwLnx_height (Driver * drvthis);
MODULE_EXPORT void CwLnx_clear (Driver * drvthis);
MODULE_EXPORT void CwLnx_flush(Driver * drvthis);
MODULE_EXPORT void CwLnx_string(Driver * drvthis, int x, int y, char string[]);
@@ -70,11 +70,5 @@ MODULE_EXPORT void CwLnx_set_contrast(Driver * drvthis, int contrast);
MODULE_EXPORT void CwLnx_clear(Driver * drvthis);
MODULE_EXPORT void CwLnx_backlight(Driver * drvthis, int on);
// MODULE_EXPORT void CwLnx_flush_box(Driver * drvthis, int lft, int top, int rgt, int bot);
// MODULE_EXPORT void CwLnx_init_vbar( Driver * drvthis);
// MODULE_EXPORT void CwLnx_init_hbar( Driver * drvthis);
// MODULE_EXPORT void CwLnx_init_num( Driver * drvthis);
// MODULE_EXPORT void CwLnx_draw_frame(Driver * drvthis, char *dat);
#endif