mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
3f55f129a6
-fixed using .wip codes in wii games -cleaned up this and that -more compatible way of fixing 002 error (thanks uLoader)
24 lines
352 B
C
24 lines
352 B
C
#ifndef __WIP_H__
|
|
#define __WIP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
typedef struct
|
|
{
|
|
u32 offset;
|
|
u32 srcaddress;
|
|
u32 dstaddress;
|
|
} WIP_Code;
|
|
|
|
u32 get_wip_count();
|
|
WIP_Code *get_wip_list();
|
|
int load_wip_patches(u8 *dir, u8 *gameid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif //__WIP_H__
|