summaryrefslogtreecommitdiffstats
path: root/libmenu
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 /libmenu
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 'libmenu')
-rw-r--r--libmenu/menu.h6
-rw-r--r--libmenu/menu_list.h6
2 files changed, 6 insertions, 6 deletions
diff --git a/libmenu/menu.h b/libmenu/menu.h
index 0f1403b7f8..62f137fb96 100644
--- a/libmenu/menu.h
+++ b/libmenu/menu.h
@@ -1,5 +1,5 @@
-#ifndef MENU_H
-#define MENU_H
+#ifndef MPLAYER_MENU_H
+#define MPLAYER_MENU_H
struct menu_priv_s;
typedef struct menu_s menu_t;
@@ -92,4 +92,4 @@ void menu_draw_text_full(mp_image_t* mpi,char* txt,
void menu_draw_box(mp_image_t* mpi, unsigned char grey, unsigned char alpha, int x, int y, int w, int h);
-#endif /* MENU_H */
+#endif /* MPLAYER_MENU_H */
diff --git a/libmenu/menu_list.h b/libmenu/menu_list.h
index 4540eb999b..c1972fff11 100644
--- a/libmenu/menu_list.h
+++ b/libmenu/menu_list.h
@@ -1,5 +1,5 @@
-#ifndef MENU_LIST_H
-#define MENU_LIST_H
+#ifndef MPLAYER_MENU_LIST_H
+#define MPLAYER_MENU_LIST_H
typedef struct list_entry_s list_entry_t;
@@ -83,4 +83,4 @@ extern const menu_list_priv_t menu_list_priv_dflt;
{ "ptr-bg-alpha", M_ST_OFF(menu_list_priv_t,ptr_bg_alpha), \
CONF_TYPE_INT, M_OPT_RANGE, 0, 255, NULL } \
-#endif /* MENU_LIST_H */
+#endif /* MPLAYER_MENU_LIST_H */