aboutsummaryrefslogtreecommitdiffstats
path: root/cfg.h
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-01-30 20:57:56 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-01-30 20:57:56 +0000
commitf040b602703f9aa2849384c9116413f9aecf04b4 (patch)
tree6577cd2c6172763a0223ed7bb933657b1c5b5436 /cfg.h
parent59a314fd82aefb99aea2e3956248a928f55fa5e4 (diff)
downloadlcd4linux-f040b602703f9aa2849384c9116413f9aecf04b4.tar.gz
[lcd4linux @ 2004-01-30 20:57:55 by reinelt]
HD44780 patch from Martin Hejl dmalloc integrated git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@348 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'cfg.h')
-rw-r--r--cfg.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/cfg.h b/cfg.h
index ffd01f6..2a43eed 100644
--- a/cfg.h
+++ b/cfg.h
@@ -1,4 +1,4 @@
-/* $Id: cfg.h,v 1.9 2004/01/14 11:33:00 reinelt Exp $
+/* $Id: cfg.h,v 1.10 2004/01/30 20:57:55 reinelt Exp $
*
* config file stuff
*
@@ -22,6 +22,10 @@
*
*
* $Log: cfg.h,v $
+ * Revision 1.10 2004/01/30 20:57:55 reinelt
+ * HD44780 patch from Martin Hejl
+ * dmalloc integrated
+ *
* Revision 1.9 2004/01/14 11:33:00 reinelt
* new plugin 'uname' which does what it's called
* text widget nearly finished
@@ -73,6 +77,7 @@ extern char *(*cfg_get_raw) (char *section, char *key, char *defval);
extern char *(*cfg_get) (char *section, char *key, char *defval);
extern int (*cfg_number) (char *section, char *key, int defval,
int min, int max, int *value);
+extern int (*cfg_exit) (void);
int l4l_cfg_init (char *file);
char *l4l_cfg_source (void);
@@ -82,5 +87,6 @@ char *l4l_cfg_get_raw (char *section, char *key, char *defval);
char *l4l_cfg_get (char *section, char *key, char *defval);
int l4l_cfg_number (char *section, char *key, int defval,
int min, int max, int *value);
+int l4l_cfg_exit (void);
#endif