2009-05-03 20:53:31 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* libwiigui Template
|
|
|
|
* Tantric 2009
|
|
|
|
*
|
|
|
|
* menu.h
|
|
|
|
* Menu flow routines - handles all menu logic
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _MENU_H_
|
|
|
|
#define _MENU_H_
|
|
|
|
|
2009-06-13 02:24:36 +02:00
|
|
|
#include <ogcsys.h>
|
2009-07-30 07:41:12 +02:00
|
|
|
#include "settings/cfg.h"
|
2009-06-05 00:13:39 +02:00
|
|
|
#include "main.h"
|
2009-05-03 20:53:31 +02:00
|
|
|
|
2009-06-01 17:50:18 +02:00
|
|
|
void InitGUIThreads(void);
|
2009-07-30 07:41:12 +02:00
|
|
|
void ExitGUIThreads(void);
|
2009-06-01 17:50:18 +02:00
|
|
|
|
2009-07-30 07:41:12 +02:00
|
|
|
int MainMenu (int menuitem);
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MENU_EXIT = -1,
|
|
|
|
MENU_NONE,
|
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_DISCLIST,
|
|
|
|
MENU_FORMAT,
|
|
|
|
MENU_INSTALL,
|
|
|
|
MENU_CHECK,
|
|
|
|
MENU_GAME_SETTINGS,
|
|
|
|
MENU_HOMEBREWBROWSE,
|
|
|
|
BOOTHOMEBREW
|
2009-05-03 20:53:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|