mirror of
https://github.com/modmii/YAWM-ModMii-Edition.git
synced 2024-11-22 08:09:18 +01:00
31d2402d59
- Refactored almost everything - Will mount available devices at start and unmount at exit app - Device select screen will now only show avialable devices - Added option to remount devices in the select screen - Will now warn if region checks are disabled in select screen - Added option to reenable region checks in select screen - Probably even more changes - SM wad installation: - Changed the region check functions (WIP) - While you install a SM you'll now be able to retain Priiloader - Bug fixes - Refactoring - Even more bug fixes
11 lines
220 B
C
11 lines
220 B
C
#ifndef _WAD_H_
|
|
#define _WAD_H_
|
|
|
|
/* Prototypes */
|
|
s32 Wad_Install(FILE* fp);
|
|
s32 Wad_Uninstall(FILE* fp);
|
|
s32 GetSysMenuRegion(u16* version, char* region);
|
|
const char* GetSysMenuRegionString(const char* region);
|
|
|
|
#endif
|