aboutsummaryrefslogtreecommitdiffstats
path: root/drv.h
diff options
context:
space:
mode:
Diffstat (limited to 'drv.h')
-rw-r--r--drv.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/drv.h b/drv.h
index e51aa98..d04464b 100644
--- a/drv.h
+++ b/drv.h
@@ -1,9 +1,9 @@
-/* $Id: drv.h 728 2007-01-14 11:14:38Z michael $
- * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv.h $
+/* $Id: drv.h 1067 2009-11-20 14:49:34Z volker $
+ * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv.h $
*
* new framework for display drivers
*
- * Copyright (C) 1999-2003 Michael Reinelt <reinelt@eunet.at>
+ * Copyright (C) 1999-2003 Michael Reinelt <michael@reinelt.co.at>
* Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
*
* This file is part of LCD4Linux.
@@ -41,6 +41,14 @@ typedef struct DRIVER {
*/
extern char *output;
+#ifdef WITH_X11
+/* function to handle special X11 command line parameters
+ * has to be defined here because it's referenced
+ * in main before dealing with normal parameters.
+ */
+void drv_X11_parseArgs(int *argc, char *arvg[]);
+#endif
+
int drv_list(void);
int drv_init(const char *section, const char *driver, const int quiet);
int drv_quit(const int quiet);