usbloadergx/source/patches/wip.h
dimok321 f3ef9104b1 *Whole lot of cleanup in the cfg.c
*Moved all related global settings to a settings class. one for themes and individual games will follow. Probably broke some settings or theme loading, we can deal with that later and fix when someone discovers bugs.
2010-09-19 20:25:12 +00:00

28 lines
396 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__