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>
|
|
|
|
#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-06-05 00:13:39 +02:00
|
|
|
void ExitGUIThreads(void);
|
|
|
|
|
|
|
|
int MainMenu (int menuitem);
|
2009-06-01 17:50:18 +02:00
|
|
|
|
2009-05-03 20:53:31 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MENU_EXIT = -1,
|
|
|
|
MENU_NONE,
|
|
|
|
MENU_SETTINGS,
|
|
|
|
MENU_DISCLIST,
|
|
|
|
MENU_FORMAT,
|
|
|
|
MENU_INSTALL,
|
|
|
|
MENU_CHECK,
|
2009-06-06 19:26:52 +02:00
|
|
|
MENU_GAME_SETTINGS
|
2009-05-03 20:53:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|