blob: aef082437fd0e546de5ca7ed02f4835d3aab78f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* xine_frontend_lirc.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: xine_frontend_lirc.h,v 1.4 2011-02-28 13:42:42 phintuka Exp $
*
*/
#ifndef XINE_FRONTEND_LIRC_H
#define XINE_FRONTEND_LIRC_H
struct frontend_s;
void lirc_start(struct frontend_s *fe, const char *lirc_dev, int repeat_emu);
void lirc_stop(void);
#endif /* XINE_FRONTEND_LIRC_H */
|