mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-01 08:25:18 +01:00
45 lines
938 B
C
45 lines
938 B
C
/****************************************************************************
|
|
* Snes9x 1.51 Nintendo Wii/Gamecube Port
|
|
*
|
|
* Tantric 2009
|
|
*
|
|
* menu.h
|
|
*
|
|
* Menu flow routines - handles all menu logic
|
|
***************************************************************************/
|
|
|
|
#ifndef _NGCMENU_
|
|
#define _NGCMENU_
|
|
|
|
#include <ogcsys.h>
|
|
|
|
void InitGUIThreads();
|
|
void MainMenu (int menuitem);
|
|
void ErrorPrompt(const char * msg);
|
|
int ErrorPromptRetry(const char * msg);
|
|
void InfoPrompt(const char * msg);
|
|
void ShowAction (const char *msg);
|
|
void CancelAction();
|
|
void ShowProgress (const char *msg, int done, int total);
|
|
|
|
enum
|
|
{
|
|
MENU_EXIT = -1,
|
|
MENU_NONE,
|
|
MENU_SETTINGS,
|
|
MENU_SETTINGS_MAPPINGS,
|
|
MENU_SETTINGS_MAPPINGS_CTRL,
|
|
MENU_SETTINGS_MAPPINGS_MAP,
|
|
MENU_SETTINGS_VIDEO,
|
|
MENU_SETTINGS_FILE,
|
|
MENU_SETTINGS_MENU,
|
|
MENU_SETTINGS_NETWORK,
|
|
MENU_GAMESELECTION,
|
|
MENU_GAME,
|
|
MENU_GAME_SAVE,
|
|
MENU_GAME_LOAD,
|
|
MENU_GAME_CHEATS
|
|
};
|
|
|
|
#endif
|