snes9xgx/source/menu.h

52 lines
1.1 KiB
C
Raw Normal View History

/****************************************************************************
2010-01-27 23:20:37 +01:00
* Snes9x Nintendo Wii/Gamecube Port
*
2021-01-06 21:13:32 +01:00
* Tantric 2008-2021
*
* menu.h
*
* Menu flow routines - handles all menu logic
***************************************************************************/
2010-04-01 23:34:35 +02:00
#ifndef _MENU_H_
#define _MENU_H_
2009-03-11 18:28:37 +01:00
#include <ogcsys.h>
void InitGUIThreads();
void MainMenu (int menuitem);
void ErrorPrompt(const char * msg);
int ErrorPromptRetry(const char * msg);
2009-03-11 18:28:37 +01:00
void InfoPrompt(const char * msg);
void ShowAction (const char *msg);
void CancelAction();
void ShowProgress (const char *msg, int done, int total);
void ChangeLanguage();
2009-03-11 18:28:37 +01:00
extern u8 * bg_music;
extern u32 bg_music_size;
2009-03-11 18:28:37 +01:00
enum
{
MENU_EXIT = -1,
MENU_NONE,
MENU_SETTINGS,
MENU_SETTINGS_FILE,
MENU_SETTINGS_MENU,
MENU_SETTINGS_NETWORK,
MENU_GAMESELECTION,
MENU_GAME,
MENU_GAME_SAVE,
MENU_GAME_LOAD,
MENU_GAME_DELETE,
2009-04-13 21:36:33 +02:00
MENU_GAMESETTINGS,
MENU_GAMESETTINGS_MAPPINGS,
MENU_GAMESETTINGS_MAPPINGS_CTRL,
MENU_GAMESETTINGS_MAPPINGS_MAP,
MENU_GAMESETTINGS_VIDEO,
MENU_GAMESETTINGS_AUDIO,
2009-04-13 21:36:33 +02:00
MENU_GAMESETTINGS_CHEATS
2009-03-11 18:28:37 +01:00
};
#endif