2010-02-15 00:22:52 +01:00
|
|
|
#ifndef _MLOAD_MODULES_H_
|
|
|
|
#define _MLOAD_MODULES_H_
|
|
|
|
|
|
|
|
#include "dip_plugin.h"
|
|
|
|
#include "mload.h"
|
2010-02-22 22:29:47 +01:00
|
|
|
#include "fatffs_module_bin.h"
|
2010-02-15 00:22:52 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2010-09-19 01:16:05 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2010-02-15 00:22:52 +01:00
|
|
|
#endif
|
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
extern void *external_ehcmodule;
|
|
|
|
extern int size_external_ehcmodule;
|
|
|
|
extern int use_port1;
|
2010-02-15 00:22:52 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
int load_ehc_module();
|
|
|
|
int load_fatffs_module( u8 *discid );
|
2010-02-15 00:22:52 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
void enable_ES_ioctlv_vector( void );
|
|
|
|
void Set_DIP_BCA_Datas( u8 *bca_data );
|
2010-02-15 00:22:52 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
void test_and_patch_for_port1();
|
2010-02-15 00:22:52 +01:00
|
|
|
|
2010-09-19 01:16:05 +02:00
|
|
|
int enable_ffs( int mode );
|
2010-02-15 00:22:52 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|