aboutsummaryrefslogtreecommitdiffstats
path: root/drv.h
diff options
context:
space:
mode:
authorreinelt <>2004-01-10 20:22:33 +0000
committerreinelt <>2004-01-10 20:22:33 +0000
commit866b24820cd9220f001b5ac18be8e881ec341cee (patch)
treecc950b0ce0cb241f374de0671aa2bc2cacae8140 /drv.h
parenta5a10e14a47d027a579058f54ac278029cdb2afc (diff)
downloadlcd4linux-866b24820cd9220f001b5ac18be8e881ec341cee.tar.gz
[lcd4linux @ 2004-01-10 20:22:33 by reinelt]
added new function 'cfg_list()' (not finished yet) added layout.c (will replace processor.c someday) added widget_text.c (will be the first and most important widget) modified lcd4linux.c so that old-style configs should work, too
Diffstat (limited to '')
-rw-r--r--drv.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/drv.h b/drv.h
index 59cf376..7f5ef85 100644
--- a/drv.h
+++ b/drv.h
@@ -1,4 +1,4 @@
-/* $Id: drv.h,v 1.1 2004/01/09 17:03:07 reinelt Exp $
+/* $Id: drv.h,v 1.2 2004/01/10 20:22:33 reinelt Exp $
*
* new framework for display drivers
*
@@ -23,6 +23,12 @@
*
*
* $Log: drv.h,v $
+ * Revision 1.2 2004/01/10 20:22:33 reinelt
+ * added new function 'cfg_list()' (not finished yet)
+ * added layout.c (will replace processor.c someday)
+ * added widget_text.c (will be the first and most important widget)
+ * modified lcd4linux.c so that old-style configs should work, too
+ *
* Revision 1.1 2004/01/09 17:03:07 reinelt
* initiated transfer to new driver architecture
* new file 'drv.c' will someday replace 'display.c'
@@ -38,7 +44,7 @@
typedef struct DRIVER {
char *name;
int (*list) (void);
- int (*init) (struct DRIVER *Self);
+ int (*init) (char *section);
int (*quit) (void);
} DRIVER;