mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-08 20:45:07 +01:00
fa11a745d6
*Rewrote the whole Settings.cpp into 11 classes. Each settings menu has it's own class now *Reworked the whole sound system. Supported formats AIF/MP3/OGG/BNS/WAV now with no file size limit (streaming). *Changed button click/over sounds to wav from raw pcm *Lot's of bug fixes
21 lines
373 B
C
21 lines
373 B
C
#ifndef _MENUS_H
|
|
#define _MENUS_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 u8 shutdown;
|
|
extern u8 reset;
|
|
|
|
int MenuInstall();
|
|
int MenuDiscList();
|
|
int SelectPartitionMenu();
|
|
int MountGamePartition(bool ShowGUI = true);
|
|
|
|
#endif // _MENUS_H
|