aboutsummaryrefslogtreecommitdiffstats
path: root/drv.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-06 06:51:59 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-06 06:51:59 +0000
commit9839b85f87bd113c3ba39c64c3985e6fb492cb79 (patch)
tree564a6ce28663224e9c1386099d3e13e3dff7da30 /drv.h
parent3daae37c43a92b9605220821ca62ca547fadf2b0 (diff)
downloadlcd4linux-9839b85f87bd113c3ba39c64c3985e6fb492cb79.tar.gz
[lcd4linux @ 2004-06-06 06:51:59 by reinelt]
do not display end splash screen if quiet=1 git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@466 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv.h')
-rw-r--r--drv.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/drv.h b/drv.h
index 7bceea2..4635c3d 100644
--- a/drv.h
+++ b/drv.h
@@ -1,4 +1,4 @@
-/* $Id: drv.h,v 1.4 2004/06/02 09:41:19 reinelt Exp $
+/* $Id: drv.h,v 1.5 2004/06/06 06:51:59 reinelt Exp $
*
* new framework for display drivers
*
@@ -23,6 +23,10 @@
*
*
* $Log: drv.h,v $
+ * Revision 1.5 2004/06/06 06:51:59 reinelt
+ *
+ * do not display end splash screen if quiet=1
+ *
* Revision 1.4 2004/06/02 09:41:19 reinelt
*
* prepared support for startup splash screen
@@ -53,8 +57,7 @@ typedef struct DRIVER {
char *name;
int (*list) (void);
int (*init) (char *section, int quiet);
- int (*greet) (int start_stop);
- int (*quit) (void);
+ int (*quit) (int quiet);
} DRIVER;
@@ -65,6 +68,6 @@ extern char *output;
int drv_list (void);
int drv_init (char *section, char *driver, int quiet);
-int drv_quit (void);
+int drv_quit (int quiet);
#endif