More formatting updates. Reduced whitespace, looks even better.

This commit is contained in:
William Ferrell
2000-03-30 20:43:33 +00:00
parent a98c8109a8
commit ddfd41f53e
78 changed files with 0 additions and 590 deletions
-18
View File
@@ -58,7 +58,6 @@
// TODO: Make a Windows server, and clients...?
lcd_logical_driver lcd;
lcd_physical_driver drivers[] = {
@@ -140,7 +139,6 @@ lcd_init (char *args)
}
// TODO: lcd_remove_driver()
int
@@ -198,7 +196,6 @@ lcd_shutdown ()
{
lcd_logical_driver *driver;
LL_Rewind (list);
do {
driver = (lcd_logical_driver *) LL_Get (list);
@@ -223,8 +220,6 @@ lcd_shutdown ()
return 0;
}
int
lcd_drv_init (struct lcd_logical_driver *driver, char *args)
{
@@ -275,12 +270,9 @@ lcd_drv_init (struct lcd_logical_driver *driver, char *args)
lcd.getkey = lcd_drv_getkey;
return 1; // 1 is arbitrary. (must be 1 or more)
}
//////////////////////////////////////////////////////////////////////
// All functions below here call their respective driver functions...
//
@@ -296,7 +288,6 @@ lcd_drv_init (struct lcd_logical_driver *driver, char *args)
// driver->func() == -1 means it should call the generic driver.
//////////////////////////////////////////////////////////////////////
void
lcd_drv_close ()
{
@@ -342,7 +333,6 @@ lcd_drv_clear ()
}
void
lcd_drv_flush ()
{
@@ -363,7 +353,6 @@ lcd_drv_flush ()
} while (LL_Next (list) == 0);
}
void
lcd_drv_string (int x, int y, char string[])
{
@@ -404,8 +393,6 @@ lcd_drv_chr (int x, int y, char c)
} while (LL_Next (list) == 0);
}
int
lcd_drv_contrast (int contrast)
{
@@ -474,7 +461,6 @@ lcd_drv_output (int on)
} while (LL_Next (list) == 0);
}
void
lcd_drv_init_vbar ()
{
@@ -615,7 +601,6 @@ lcd_drv_hbar (int x, int y, int len)
} while (LL_Next (list) == 0);
}
void
lcd_drv_icon (int which, char dest)
{
@@ -636,7 +621,6 @@ lcd_drv_icon (int which, char dest)
} while (LL_Next (list) == 0);
}
void
lcd_drv_flush_box (int lft, int top, int rgt, int bot)
{
@@ -658,7 +642,6 @@ lcd_drv_flush_box (int lft, int top, int rgt, int bot)
}
// TODO: Check whether lcd.draw_frame() should really take a framebuffer
// TODO: as an argument, or if it should always use lcd.framebuf
void
@@ -682,7 +665,6 @@ lcd_drv_draw_frame (char *dat)
}
char
lcd_drv_getkey ()
{