Include appconfig.h before using its definitions.
authorbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 20 Feb 2006 14:34:32 +0000 (14:34 +0000)
committerbernie <bernie@38d2e660-2303-0410-9eaa-f027e97ec537>
Mon, 20 Feb 2006 14:34:32 +0000 (14:34 +0000)
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@530 38d2e660-2303-0410-9eaa-f027e97ec537

mware/menu.c

index 89d889307263e02c9475b35b79b83314f4c9a04a..2aa23abd873a6a31c3d8941b1c1c8537fde5e5e3 100755 (executable)
@@ -16,6 +16,9 @@
 
 /*#*
  *#* $Log$
+ *#* Revision 1.3  2006/02/20 14:34:32  bernie
+ *#* Include appconfig.h before using its definitions.
+ *#*
  *#* Revision 1.2  2006/02/15 09:10:51  bernie
  *#* Make title bold; Fix height when we have no menubar.
  *#*
 
 #include "menu.h"
 
-#if CONFIG_MENU_MENUBAR
-#include "menubar.h"
-#endif
-
 #include <gfx/gfx.h>
 #include <gfx/font.h>
 #include <gfx/text.h>
 #include <drv/kbd.h>
 #include <cfg/compiler.h>
 #include <cfg/debug.h>
+#include <appconfig.h>
 
 #if CPU_HARVARD
 #include <avr/pgmspace.h> /* strncpy_P() */
 
 #include <string.h> /* strcpy() */
 
+#if CONFIG_MENU_MENUBAR
+#include "menubar.h"
+#endif
+
 #if defined(CONFIG_LOCALE) && (CONFIG_LOCALE == 1)
 #include "msg.h"
 #else