aboutsummaryrefslogtreecommitdiffstats
path: root/drv.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-02 09:41:19 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-06-02 09:41:19 +0000
commit246b8539fe86f8e6636e18b65b70da3169dfabd6 (patch)
treefac33297acc1a4d6d49c686f0cac8f2139face8e /drv.h
parentb07a5205b19d8e46596d748af8e070bfd58949e5 (diff)
downloadlcd4linux-246b8539fe86f8e6636e18b65b70da3169dfabd6.tar.gz
[lcd4linux @ 2004-06-02 09:41:19 by reinelt]
prepared support for startup splash screen git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@461 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'drv.h')
-rw-r--r--drv.h15
1 files changed, 10 insertions, 5 deletions
diff --git a/drv.h b/drv.h
index 1cac26c..7bceea2 100644
--- a/drv.h
+++ b/drv.h
@@ -1,4 +1,4 @@
-/* $Id: drv.h,v 1.3 2004/01/20 15:32:49 reinelt Exp $
+/* $Id: drv.h,v 1.4 2004/06/02 09:41:19 reinelt Exp $
*
* new framework for display drivers
*
@@ -23,6 +23,10 @@
*
*
* $Log: drv.h,v $
+ * Revision 1.4 2004/06/02 09:41:19 reinelt
+ *
+ * prepared support for startup splash screen
+ *
* Revision 1.3 2004/01/20 15:32:49 reinelt
* first version of Next Generation HD44780 (untested! but it compiles...)
* some cleanup in the other drivers
@@ -48,7 +52,8 @@
typedef struct DRIVER {
char *name;
int (*list) (void);
- int (*init) (char *section);
+ int (*init) (char *section, int quiet);
+ int (*greet) (int start_stop);
int (*quit) (void);
} DRIVER;
@@ -58,8 +63,8 @@ typedef struct DRIVER {
// even if the raster driver is not included!
extern char *output;
-int drv_list (void);
-int drv_init (char *section, char *driver);
-int drv_quit (void);
+int drv_list (void);
+int drv_init (char *section, char *driver, int quiet);
+int drv_quit (void);
#endif