~siretart/lcd4linux/debian

« back to all changes in this revision

Viewing changes to drv.h

  • Committer: Reinhard Tartler
  • Date: 2011-04-27 17:28:49 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: siretart@tauware.de-20110427172849-mj5cj5a0igpcc9fn
New upstream snapshot

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: drv.h 728 2007-01-14 11:14:38Z michael $
2
 
 * $URL: https://ssl.bulix.org/svn/lcd4linux/branches/0.10.1/drv.h $
 
1
/* $Id: drv.h 1067 2009-11-20 14:49:34Z volker $
 
2
 * $URL: https://ssl.bulix.org/svn/lcd4linux/trunk/drv.h $
3
3
 *
4
4
 * new framework for display drivers
5
5
 *
6
 
 * Copyright (C) 1999-2003 Michael Reinelt <reinelt@eunet.at>
 
6
 * Copyright (C) 1999-2003 Michael Reinelt <michael@reinelt.co.at>
7
7
 * Copyright (C) 2004 The LCD4Linux Team <lcd4linux-devel@users.sourceforge.net>
8
8
 *
9
9
 * This file is part of LCD4Linux.
41
41
 */
42
42
extern char *output;
43
43
 
 
44
#ifdef WITH_X11
 
45
/* function to handle special X11 command line parameters
 
46
 * has to be defined here because it's referenced
 
47
 * in main before dealing with normal parameters.
 
48
 */
 
49
void drv_X11_parseArgs(int *argc, char *arvg[]);
 
50
#endif
 
51
 
44
52
int drv_list(void);
45
53
int drv_init(const char *section, const char *driver, const int quiet);
46
54
int drv_quit(const int quiet);