WiiFlow_Lite/resources/wiiflow_game_booter/source/wip.h
fix94.1 8cc82998ac -experiment tinyload failed, back to my libogc booter
(however, I'll keep using that awesome loading bar of it lol)
-fixed this strange click sound on game boot
2012-10-14 17:18:13 +00:00

26 lines
431 B
C

#ifndef __WIP_H__
#define __WIP_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
typedef struct
{
u32 offset;
u32 srcaddress;
u32 dstaddress;
} WIP_Code;
bool set_wip_list(WIP_Code *list, int size);
void wip_reset_counter();
void free_wip();
void do_wip_code(u8 *dst, u32 len);
int load_wip_patches(u8 *dir, u8 *gameid);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif //__WIP_H__