summaryrefslogtreecommitdiffstats
path: root/input
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
commit8efb2fa21c81f99b37795621f9ec2bc125c6ced0 (patch)
tree9a6f354228affe704b16844775070159e82b5fcd /input
parent50899e9083661200d9bb105dca0339c14e56d271 (diff)
downloadmpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.bz2
mpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.xz
Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input')
-rw-r--r--input/ar.h6
-rw-r--r--input/input.h6
-rw-r--r--input/joystick.h6
-rw-r--r--input/lirc.h6
-rw-r--r--input/mouse.h6
5 files changed, 15 insertions, 15 deletions
diff --git a/input/ar.h b/input/ar.h
index c6b7c4d5b9..836ba089d1 100644
--- a/input/ar.h
+++ b/input/ar.h
@@ -20,8 +20,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef INPUT_AR_H
-#define INPUT_AR_H
+#ifndef MPLAYER_AR_H
+#define MPLAYER_AR_H
#define AR_BASE 0x500
#define AR_PLAY (AR_BASE + 0)
@@ -39,4 +39,4 @@ int mp_input_ar_init(void);
int mp_input_ar_read(int fd);
void mp_input_ar_close(int fd);
-#endif /* INPUT_AR_H */
+#endif /* MPLAYER_AR_H */
diff --git a/input/input.h b/input/input.h
index 1290ecd19d..e6381b3e34 100644
--- a/input/input.h
+++ b/input/input.h
@@ -1,5 +1,5 @@
-#ifndef INPUT_H
-#define INPUT_H
+#ifndef MPLAYER_INPUT_H
+#define MPLAYER_INPUT_H
// All command IDs
#define MP_CMD_SEEK 0
@@ -302,4 +302,4 @@ mp_input_check_interrupt(int time);
extern int async_quit_request;
-#endif /* INPUT_H */
+#endif /* MPLAYER_INPUT_H */
diff --git a/input/joystick.h b/input/joystick.h
index f7b8cb323d..3a70f7cbd3 100644
--- a/input/joystick.h
+++ b/input/joystick.h
@@ -1,5 +1,5 @@
-#ifndef JOYSTICK_H
-#define JOYSTICK_H
+#ifndef MPLAYER_JOYSTICK_H
+#define MPLAYER_JOYSTICK_H
#define JOY_BASE (0x100+128)
#define JOY_AXIS0_PLUS (JOY_BASE+0)
@@ -39,4 +39,4 @@ int mp_input_joystick_init(char* dev);
int mp_input_joystick_read(int fd);
-#endif /* JOYSTICK_H */
+#endif /* MPLAYER_JOYSTICK_H */
diff --git a/input/lirc.h b/input/lirc.h
index 4aabc018a8..cd1513dc53 100644
--- a/input/lirc.h
+++ b/input/lirc.h
@@ -1,5 +1,5 @@
-#ifndef LIRC_H
-#define LIRC_H
+#ifndef MPLAYER_LIRC_H
+#define MPLAYER_LIRC_H
int
mp_input_lirc_init(void);
@@ -10,4 +10,4 @@ mp_input_lirc_read(int fd,char* dest, int s);
void
mp_input_lirc_close(int fd);
-#endif /* LIRC_H */
+#endif /* MPLAYER_LIRC_H */
diff --git a/input/mouse.h b/input/mouse.h
index 0b61efeaa2..e2e6f53fe8 100644
--- a/input/mouse.h
+++ b/input/mouse.h
@@ -1,5 +1,5 @@
-#ifndef MOUSE_H
-#define MOUSE_H
+#ifndef MPLAYER_MOUSE_H
+#define MPLAYER_MOUSE_H
#define MOUSE_BASE ((0x100+256)|MP_NO_REPEAT_KEY)
#define MOUSE_BTN0 (MOUSE_BASE+0)
@@ -25,4 +25,4 @@
#define MOUSE_BTN8_DBL (MOUSE_BASE_DBL+8)
#define MOUSE_BTN9_DBL (MOUSE_BASE_DBL+9)
-#endif /* MOUSE_H */
+#endif /* MPLAYER_MOUSE_H */