annotate input/lirc.h @ 26446:645f8affe55c

Simplify list of files to remove on make clean.
author diego
date Sun, 20 Apr 2008 22:07:34 +0000
parents 4129c8cfa742
children 142c53391eb7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25554
diff changeset
1 #ifndef MPLAYER_LIRC_H
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25554
diff changeset
2 #define MPLAYER_LIRC_H
4432
5105f5da01d6 Added lirc support in input
albeu
parents:
diff changeset
3
5105f5da01d6 Added lirc support in input
albeu
parents:
diff changeset
4 int
5105f5da01d6 Added lirc support in input
albeu
parents:
diff changeset
5 mp_input_lirc_init(void);
5105f5da01d6 Added lirc support in input
albeu
parents:
diff changeset
6
7883
d375383e1a48 rewrote the lirc code to remove the fork
arpi
parents: 4432
diff changeset
7 int
d375383e1a48 rewrote the lirc code to remove the fork
arpi
parents: 4432
diff changeset
8 mp_input_lirc_read(int fd,char* dest, int s);
d375383e1a48 rewrote the lirc code to remove the fork
arpi
parents: 4432
diff changeset
9
4432
5105f5da01d6 Added lirc support in input
albeu
parents:
diff changeset
10 void
7883
d375383e1a48 rewrote the lirc code to remove the fork
arpi
parents: 4432
diff changeset
11 mp_input_lirc_close(int fd);
25553
6ac1ece1f9fe Add multiple inclusion guards to all header files that lack them.
diego
parents: 7883
diff changeset
12
26029
4129c8cfa742 Add MPLAYER_ prefix to multiple inclusion guards.
diego
parents: 25554
diff changeset
13 #endif /* MPLAYER_LIRC_H */