mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
a4f3d16a56
*Added support for older Hermes IOS too (rev 2 and rev 3) *Changed Alternative Dol Browser to get the filelist (fst) with functions from libwbfs (like banner sounds) instead of from an emulated disk. This should fix all the weird crashes with it.
16 lines
256 B
C++
16 lines
256 B
C++
#ifndef _IOSLOADER_H_
|
|
#define _IOSLOADER_H_
|
|
|
|
#include <gctypes.h>
|
|
|
|
class IosLoader
|
|
{
|
|
public:
|
|
static s32 LoadAppCios();
|
|
static s32 ReloadIosSafe(s32 ios);
|
|
private:
|
|
static void LoadIOSModules(s32 ios, s32 ios_rev);
|
|
};
|
|
|
|
#endif
|