Search
lxdream.org :: lxdream/src/drivers/input_lirc.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/drivers/input_lirc.h
changeset 1015:ad448bedc48a
author nkeynes
date Tue Jun 02 23:16:26 2009 +0000 (14 years ago)
permissions -rw-r--r--
last change "MythTV" patch from Wahrhaft, thanks!:
* Add support for LIRC input devices
* Add hotkey input support
* Add command-line option for immediate fullscreen
view annotate diff log raw
     1 /**
     2  * $Id:  $
     3  *
     4  * LIRC input device support
     5  *
     6  * Copyright (c) 2009 wahrhaft
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_input_lirc_H
    20 #define lxdream_input_lirc_H
    22 #ifdef __cplusplus
    23 extern "C" {
    24 #endif
    25 /**
    26  * Initialize LIRC
    27  */
    28 void input_lirc_create();
    30 /**
    31  * Shutdown LIRC
    32  */
    33 void input_lirc_shutdown();
    35 #ifdef __cplusplus
    36 }
    37 #endif
    39 #endif /* !lxdream_input_lirc_H */
.