mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
8943592d0e
*Ignore sector size of wbfs partitions in MBR (some lazy Partition Manager don't change it). Reading it from the partition header now. *Several small bug fixes and cleanups *Fixed "Bannersound + BG Music after it" mode *Updated language files
19 lines
306 B
C
19 lines
306 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 "sys.h"
|
|
|
|
extern u8 shutdown;
|
|
extern u8 reset;
|
|
|
|
int MenuInstall();
|
|
int MenuDiscList();
|
|
int SelectPartitionMenu();
|
|
|
|
#endif // _MENUS_H
|