mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
15bcbfa482
You will see the list of available channels on your system if you start without a HDD or if your HDD is slow and is being recognized late. The list of games is than reloading as soon as it is recognized. *Hot swapping of the SD card was implemented into background thread (by giantpune) *Made lots of cleanups and some fixes *Format menu was moved to settings page 3 (only on godmode accessable) *Added ScreenShot and Reset/Shutdown call to background thread. Removed the not needed ones. Now you can call for Screenshot/Reset/Shutdown anywhere in the loader (after gui is started).
32 lines
577 B
C
32 lines
577 B
C
#ifndef _MENUS_H
|
|
#define _MENUS_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "libwiigui/gui.h"
|
|
#include "language/gettext.h"
|
|
#include "prompts/PromptWindows.h"
|
|
#include "menu.h"
|
|
#include "gecko.h"
|
|
#include "filelist.h"
|
|
#include "sys.h"
|
|
|
|
extern GuiWindow * mainWindow;
|
|
extern GuiSound * bgMusic;
|
|
extern u8 checkthreadState;
|
|
extern u8 needToReloadGamelist;
|
|
extern u8 hddOK;
|
|
extern u8 mountMethod;
|
|
|
|
|
|
int MenuInstall();
|
|
int MenuDiscList();
|
|
int MenuFormat();
|
|
|
|
extern void ResumeCheck();
|
|
extern void HaltCheck();
|
|
extern void InitCheckThread();
|
|
extern void ExitCheckThread();
|
|
|
|
#endif // _MENUS_H
|