annotate input/lirc.h @ 27318:bb5ed9aa34fc

Remove AltiVec vector declaration compiler compatibility macros. The original problem was that FSF and Apple gcc used a different syntax for vector declarations, i.e. {} vs. (). Nowadays Apple gcc versions support the standard {} syntax and versions that support {} are available on all relevant Mac OS X versions. Thus the greater compatibility is no longer worth cluttering the code with macros.
author diego
date Sat, 26 Jul 2008 12:26:04 +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 */