mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-03 18:15:06 +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.
24 lines
427 B
C
24 lines
427 B
C
#ifndef _MLOAD_MODULES_H_
|
|
#define _MLOAD_MODULES_H_
|
|
|
|
#include "mload.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int load_modules(const u8 * ehcmodule, int ehcmodule_size, const u8 * dip_plugin, int dip_plugin_size);
|
|
void enable_ES_ioctlv_vector(void);
|
|
void Set_DIP_BCA_Datas(u8 *bca_data);
|
|
void disableIOSReload(void);
|
|
u8 *search_for_ehcmodule_cfg(u8 *p, int size);
|
|
bool shadow_mload();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|