# HG changeset patch # User diego # Date 1203552633 0 # Node ID aee6ea2b39eeb0efbc7c2798639fccbf4df2e3ed # Parent 2d7cec7717278140d6774007bc57a4296b72741f Consistently use filename as multiple inclusion guard. diff -r 2d7cec771727 -r aee6ea2b39ee gui/mplayer/gtk/gtk_common.h --- a/gui/mplayer/gtk/gtk_common.h Wed Feb 20 22:55:44 2008 +0000 +++ b/gui/mplayer/gtk/gtk_common.h Thu Feb 21 00:10:33 2008 +0000 @@ -1,6 +1,6 @@ -#ifndef GUI_COMMON_H -#define GUI_COMMON_H +#ifndef GUI_GTK_COMMON_H +#define GUI_GTK_COMMON_H #include #include @@ -21,4 +21,4 @@ extern GtkWidget * AddComboBox( GtkWidget * parent ); extern void WidgetDestroy( GtkWidget * widget,GtkWidget ** widget_pointer ); -#endif /* GUI_COMMON_H */ +#endif /* GUI_GTK_COMMON_H */ diff -r 2d7cec771727 -r aee6ea2b39ee gui/mplayer/gui_common.h --- a/gui/mplayer/gui_common.h Wed Feb 20 22:55:44 2008 +0000 +++ b/gui/mplayer/gui_common.h Thu Feb 21 00:10:33 2008 +0000 @@ -1,6 +1,6 @@ -#ifndef GUI_COMMON_H -#define GUI_COMMON_H +#ifndef GUI_GUI_COMMON_H +#define GUI_GUI_COMMON_H #include #include @@ -18,4 +18,4 @@ extern void SimplePotmeterPutImage( txSample * bf,int x,int y,float frac ); extern void Render( wsTWindow * window,wItem * Items,int nrItems,char * db,int size ); -#endif /* GUI_COMMON_H */ +#endif /* GUI_GUI_COMMON_H */ diff -r 2d7cec771727 -r aee6ea2b39ee libmpcodecs/vd_internal.h --- a/libmpcodecs/vd_internal.h Wed Feb 20 22:55:44 2008 +0000 +++ b/libmpcodecs/vd_internal.h Thu Feb 21 00:10:33 2008 +0000 @@ -1,5 +1,5 @@ -#ifndef VD_INTERNAL -#define VD_INTERNAL +#ifndef VD_INTERNAL_H +#define VD_INTERNAL_H #include "codec-cfg.h" #include "img_format.h" @@ -27,4 +27,4 @@ decode\ }; -#endif /* VD_INTERNAL */ +#endif /* VD_INTERNAL_H */ diff -r 2d7cec771727 -r aee6ea2b39ee libvo/w32_common.h --- a/libvo/w32_common.h Wed Feb 20 22:55:44 2008 +0000 +++ b/libvo/w32_common.h Thu Feb 21 00:10:33 2008 +0000 @@ -1,5 +1,5 @@ -#ifndef W32COMMON_H -#define W32COMMON_H +#ifndef W32_COMMON_H +#define W32_COMMON_H extern HWND vo_w32_window; extern int vo_vm; @@ -14,4 +14,4 @@ extern void destroyRenderingContext(void); extern void w32_update_xinerama_info(void); -#endif /* W32COMMON_H */ +#endif /* W32_COMMON_H */