00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef _MENU_H_
00010 #define _MENU_H_
00011
00012 #include <ogcsys.h>
00013
00014 #include "libwiigui/gui.h"
00015
00016 #define THREAD_SLEEP 100
00017
00018 void InitGUIThreads();
00019 void MainMenu();
00020 void ResumeGui();
00021 void HaltGui();
00022 int WindowPrompt(const char *title, const char *msg, const char *btn1Label, const char *btn2Label, GuiWindow *parentWindow = NULL);
00023
00024 enum
00025 {
00026 MENU_EXIT = -1,
00027 MENU_NONE,
00028 MENU_SETTINGS,
00029 MENU_SETTINGS_FILE,
00030 MENU_BROWSE_DEVICE
00031 };
00032
00033 #endif