mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 09:19:17 +01:00
f3ef9104b1
*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.
28 lines
396 B
C
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__
|