From 8efb2fa21c81f99b37795621f9ec2bc125c6ced0 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 22 Feb 2008 09:09:46 +0000 Subject: Add MPLAYER_ prefix to multiple inclusion guards. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2 --- input/ar.h | 6 +++--- input/input.h | 6 +++--- input/joystick.h | 6 +++--- input/lirc.h | 6 +++--- input/mouse.h | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) (limited to 'input') 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 */ -- cgit v1.2.3