usbloadergx/source/menu.h
dimok321 71c288f0a2 *Added new custom backgroundmusic Menu (the music has to be in OGG Format. if you remove the path to the music the standard of the GUi is loaded right now)
*Added languagefiles again
*Added some new Languagevariables which will be added to wiki tommorow
2009-05-20 00:03:43 +00:00

33 lines
594 B
C

/****************************************************************************
* libwiigui Template
* Tantric 2009
*
* menu.h
* Menu flow routines - handles all menu logic
***************************************************************************/
#ifndef _MENU_H_
#define _MENU_H_
#include <ogcsys.h>
void InitGUIThreads();
int MainMenu (int menuitem);
void wiilight(int enable);
int GameSettings(struct discHdr *);
enum
{
MENU_EXIT = -1,
MENU_NONE,
MENU_SETTINGS,
MENU_DISCLIST,
MENU_FORMAT,
MENU_INSTALL,
MENU_CHECK,
MENU_GAME_SETTINGS,
MENU_OGG,
MENU_MP3
};
#endif