blob: 32c4a7a02d1cff75eef4c59d039b9292c7564ed3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* xine_frontend_cec.h:
*
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
* $Id: xine_frontend_cec.h,v 1.1 2014-01-14 08:21:33 phintuka Exp $
*
*/
#ifndef XINE_FRONTEND_CEC_H
#define XINE_FRONTEND_CEC_H
struct frontend_s;
void cec_start(struct frontend_s *fe, int hdmi_port, int dev_type);
void cec_stop(void);
#endif /* XINE_FRONTEND_CEC_H */
|