usbloadergx/source/mload/mload_modules.h
e.bovendeur ce5930f297 * Added Hermes rev5 support! (issue 1438)
* Updated to Hermes usb storage code
* Fixed some bugs in ntfs while writing timestamps, resulting in different hashes (dimok)
* Fixed codedump when switching partitions (issue 1454)
* Fixed graphical glitch on 4:3 screens, where the prefetch cover was visible in the coverwall
* Fixed a bug with installing games, due to the switch to C++ (dimok)
2010-02-22 21:29:47 +00:00

31 lines
522 B
C

#ifndef _MLOAD_MODULES_H_
#define _MLOAD_MODULES_H_
#include "dip_plugin.h"
#include "mload.h"
#include "fatffs_module_bin.h"
#ifdef __cplusplus
extern "C" {
#endif
extern void *external_ehcmodule;
extern int size_external_ehcmodule;
extern int use_port1;
int load_ehc_module();
int load_fatffs_module(u8 *discid);
void enable_ES_ioctlv_vector(void);
void Set_DIP_BCA_Datas(u8 *bca_data);
void test_and_patch_for_port1();
int enable_ffs(int mode);
#ifdef __cplusplus
}
#endif
#endif