Updated lirc driver

This commit is contained in:
robijn
2002-03-27 22:46:46 +00:00
parent 707fd2300d
commit bc61fa0da8
2 changed files with 89 additions and 81 deletions
+24 -4
View File
@@ -1,10 +1,30 @@
/* This is the LCDproc driver for LIRC infrared devices (http://www.lirc.org)
Copyright (C) 2000, Harald Klein
2002, Rene Wagner
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
*/
#ifndef LCD_LIRCIN_H
#define LCD_LIRCIN_H
#include "lcd.h"
MODULE_EXPORT int lircin_init (Driver *drvthis, char *args);
MODULE_EXPORT void lircin_close (Driver *drvthis);
MODULE_EXPORT char * lircin_get_key (Driver *drvthis);
MODULE_EXPORT int lircin_init (Driver * drvthis, char *args);
MODULE_EXPORT void lircin_close (Driver * drvthis);
MODULE_EXPORT char lircin_getkey (Driver * drvthis);
#define LIRCIN_VERBOSELY 1
#endif