From baee7815d5566ebb63389c1780e464c3d1f18be1 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 1 Jan 2008 20:21:20 +0000 Subject: Replace multiple inclusion guards with leading underscores by default names. Leading underscores are reserved for system identifiers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25579 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libaf/af.h | 6 +++--- libaf/af_format.h | 6 +++--- libaf/af_mp.h | 6 +++--- libaf/control.h | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) (limited to 'libaf') diff --git a/libaf/af.h b/libaf/af.h index a4dc6f9535..22139275e0 100644 --- a/libaf/af.h +++ b/libaf/af.h @@ -1,5 +1,5 @@ -#ifndef __af_h__ -#define __af_h__ +#ifndef AF_H +#define AF_H #include @@ -354,4 +354,4 @@ extern af_msg_cfg_t af_msg_cfg; // Message #endif //! \} -#endif /* __af_h__ */ +#endif /* AF_H */ diff --git a/libaf/af_format.h b/libaf/af_format.h index 1cc26c3096..5588957882 100644 --- a/libaf/af_format.h +++ b/libaf/af_format.h @@ -1,8 +1,8 @@ /* The sample format system used lin libaf is based on bitmasks. The format definition only refers to the storage format not the resolution. */ -#ifndef __af_format_h__ -#define __af_format_h__ +#ifndef AF_FORMAT_H +#define AF_FORMAT_H #ifndef MPLAYER_CONFIG_H #error af_format.h needs config.h @@ -93,4 +93,4 @@ extern int af_bits2fmt(int bits); extern char* af_fmt2str(int format, char* str, int size); extern const char* af_fmt2str_short(int format); -#endif /* __af_format_h__ */ +#endif /* AF_FORMAT_H */ diff --git a/libaf/af_mp.h b/libaf/af_mp.h index f2ddd873fc..3130b77ef0 100644 --- a/libaf/af_mp.h +++ b/libaf/af_mp.h @@ -1,6 +1,6 @@ /* Include file for mplayer specific defines and includes */ -#ifndef __af_mp_h__ -#define __af_mp_h__ +#ifndef AF_MP_H +#define AF_MP_H #include "config.h" #include "mp_msg.h" @@ -19,4 +19,4 @@ #define af_msg(lev, args... ) \ mp_msg(MSGT_AFILTER,(((lev)<0)?((lev)+3):(((lev)==0)?MSGL_INFO:((lev)+5))), ##args ) -#endif /* __af_mp_h__ */ +#endif /* AF_MP_H */ diff --git a/libaf/control.h b/libaf/control.h index 7c6a8dd371..2dc94b6afb 100644 --- a/libaf/control.h +++ b/libaf/control.h @@ -1,5 +1,5 @@ -#ifndef __af_control_h -#define __af_control_h +#ifndef AF_CONTROL_H +#define AF_CONTROL_H /********************************************* // Control info struct. @@ -234,4 +234,4 @@ typedef struct af_control_ext_s{ #define AF_CONTROL_PLAYBACK_SPEED 0x00002500 | AF_CONTROL_FILTER_SPECIFIC #define AF_CONTROL_SCALETEMPO_AMOUNT 0x00002600 | AF_CONTROL_FILTER_SPECIFIC -#endif /*__af_control_h */ +#endif /* AF_CONTROL_H */ -- cgit v1.2.3