From 2b6af2000b421057a3194a962a9ab6be39d0a838 Mon Sep 17 00:00:00 2001 From: diego Date: Tue, 1 Jan 2008 21:35:58 +0000 Subject: Add multiple inclusion guards to all header files that lack them. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25581 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libmenu/menu.h | 4 ++++ libmenu/menu_list.h | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'libmenu') diff --git a/libmenu/menu.h b/libmenu/menu.h index 7d4defaacf..0f1403b7f8 100644 --- a/libmenu/menu.h +++ b/libmenu/menu.h @@ -1,3 +1,5 @@ +#ifndef MENU_H +#define MENU_H struct menu_priv_s; typedef struct menu_s menu_t; @@ -89,3 +91,5 @@ void menu_draw_text_full(mp_image_t* mpi,char* txt, int vspace, int warp, int align, int anchor); 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 */ diff --git a/libmenu/menu_list.h b/libmenu/menu_list.h index 22c560ccee..4540eb999b 100644 --- a/libmenu/menu_list.h +++ b/libmenu/menu_list.h @@ -1,3 +1,5 @@ +#ifndef MENU_LIST_H +#define MENU_LIST_H typedef struct list_entry_s list_entry_t; @@ -80,5 +82,5 @@ extern const menu_list_priv_t menu_list_priv_dflt; { "ptr-bg", M_ST_OFF(menu_list_priv_t,ptr_bg), CONF_TYPE_INT, M_OPT_RANGE, -1, 255, NULL }, \ { "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 */ -- cgit v1.2.3