blob: cd1513dc5393369c785d1da9c20adedbcb29762a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef MPLAYER_LIRC_H
#define MPLAYER_LIRC_H
int
mp_input_lirc_init(void);
int
mp_input_lirc_read(int fd,char* dest, int s);
void
mp_input_lirc_close(int fd);
#endif /* MPLAYER_LIRC_H */
|