Removed lcddriver.c (doesn't do anything, isn't in any makefiles, etc.).
Passed *every* piece of source in this project through indent. I'm setting things up with ctags soon and am actually going to *gasp* use a nice programming environment to continue development in. :)
This commit is contained in:
+20
-20
@@ -94,26 +94,26 @@
|
||||
|
||||
extern lcd_logical_driver *drv_base;
|
||||
|
||||
int drv_base_init(struct lcd_logical_driver *driver, char *args);
|
||||
void drv_base_close();
|
||||
void drv_base_clear();
|
||||
void drv_base_flush();
|
||||
void drv_base_string(int x, int y, char string[]);
|
||||
void drv_base_chr(int x, int y, char c);
|
||||
int drv_base_contrast(int contrast);
|
||||
void drv_base_backlight(int on);
|
||||
void drv_base_output(int on);
|
||||
void drv_base_vbar(int x, int len);
|
||||
void drv_base_init_vbar();
|
||||
void drv_base_hbar(int x, int y, int len);
|
||||
void drv_base_init_hbar();
|
||||
void drv_base_num(int x, int num);
|
||||
void drv_base_init_num();
|
||||
void drv_base_set_char(int n, char *dat);
|
||||
void drv_base_icon(int which, char dest);
|
||||
void drv_base_flush_box(int lft, int top, int rgt, int bot);
|
||||
void drv_base_draw_frame(char *dat);
|
||||
char drv_base_getkey();
|
||||
int drv_base_init (struct lcd_logical_driver *driver, char *args);
|
||||
void drv_base_close ();
|
||||
void drv_base_clear ();
|
||||
void drv_base_flush ();
|
||||
void drv_base_string (int x, int y, char string[]);
|
||||
void drv_base_chr (int x, int y, char c);
|
||||
int drv_base_contrast (int contrast);
|
||||
void drv_base_backlight (int on);
|
||||
void drv_base_output (int on);
|
||||
void drv_base_vbar (int x, int len);
|
||||
void drv_base_init_vbar ();
|
||||
void drv_base_hbar (int x, int y, int len);
|
||||
void drv_base_init_hbar ();
|
||||
void drv_base_num (int x, int num);
|
||||
void drv_base_init_num ();
|
||||
void drv_base_set_char (int n, char *dat);
|
||||
void drv_base_icon (int which, char dest);
|
||||
void drv_base_flush_box (int lft, int top, int rgt, int bot);
|
||||
void drv_base_draw_frame (char *dat);
|
||||
char drv_base_getkey ();
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user