mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
973d8b2005
*Converted every 4 spaces to a tab to make the source consistent on those
28 lines
392 B
C
28 lines
392 B
C
#ifndef __WIP_H__
|
|
#define __WIP_H__
|
|
|
|
#include <gccore.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
u32 offset;
|
|
u32 srcaddress;
|
|
u32 dstaddress;
|
|
} WIP_Code;
|
|
|
|
int load_wip_code(u8 *gameid);
|
|
void do_wip_code(u8 * dst, u32 len);
|
|
bool set_wip_list(WIP_Code * list, int size);
|
|
void wip_reset_counter();
|
|
void free_wip();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif //__WIP_H__
|