mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
973d8b2005
*Converted every 4 spaces to a tab to make the source consistent on those
50 lines
958 B
C
50 lines
958 B
C
/****************************************************************************
|
|
* libwiigui Template
|
|
* Tantric 2009
|
|
*
|
|
* menu.h
|
|
* Menu flow routines - handles all menu logic
|
|
***************************************************************************/
|
|
|
|
#ifndef _MENU_H_
|
|
#define _MENU_H_
|
|
|
|
#include <ogcsys.h>
|
|
#include "GUI/gui.h"
|
|
#include "settings/CSettings.h"
|
|
#include "main.h"
|
|
|
|
void InitGUIThreads(void);
|
|
void ExitGUIThreads(void);
|
|
|
|
int MainMenu(int menuitem);
|
|
|
|
enum
|
|
{
|
|
MENU_EXIT = -1,
|
|
MENU_NONE,
|
|
MENU_SETTINGS,
|
|
MENU_DISCLIST,
|
|
MENU_INSTALL,
|
|
MENU_GAME_SETTINGS,
|
|
MENU_HOMEBREWBROWSE,
|
|
BOOTHOMEBREW,
|
|
MENU_THEMEDOWNLOADER,
|
|
MENU_THEMEMENU,
|
|
};
|
|
|
|
void ResumeGui();
|
|
void HaltGui();
|
|
|
|
extern GuiImageData *pointer[4];
|
|
extern GuiImageData *background;
|
|
extern GuiImage *bgImg;
|
|
extern GuiWindow *mainWindow;
|
|
extern GuiText *GameRegionTxt;
|
|
extern GuiText *GameIDTxt;
|
|
extern GuiImageData *cover;
|
|
extern GuiImage *coverImg;
|
|
extern FreeTypeGX *fontSystem;
|
|
|
|
#endif
|