diff libmenu/menu.h @ 25553:6ac1ece1f9fe

Add multiple inclusion guards to all header files that lack them.
author diego
date Tue, 01 Jan 2008 21:35:58 +0000
parents 605d4e3e403f
children 4129c8cfa742
line wrap: on
line diff
--- a/libmenu/menu.h	Tue Jan 01 21:20:06 2008 +0000
+++ b/libmenu/menu.h	Tue Jan 01 21:35:58 2008 +0000
@@ -1,3 +1,5 @@
+#ifndef MENU_H
+#define MENU_H
 
 struct menu_priv_s;
 typedef struct  menu_s menu_t;
@@ -89,3 +91,5 @@
 			 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 */