mirror of
https://github.com/nitraiolo/CfgUSBLoader.git
synced 2024-11-30 15:14:16 +01:00
36 lines
633 B
C
36 lines
633 B
C
#ifndef _MLOAD_MODULES_H_
|
|
#define _MLOAD_MODULES_H_
|
|
|
|
//#include "global.h"
|
|
//#include "ehcmodule.h"
|
|
|
|
//#include "dip_plugin.h"
|
|
#include "mload.h"
|
|
//#include "fatffs_module.h"
|
|
|
|
extern void *ehcmodule;
|
|
extern int size_ehcmodule;
|
|
|
|
extern void *dip_plugin;
|
|
extern int size_dip_plugin;
|
|
|
|
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);
|
|
|
|
u8 *search_for_ehcmodule_cfg(u8 *p, int size);
|
|
|
|
#endif
|
|
|
|
|