mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
18 lines
307 B
C
18 lines
307 B
C
#ifndef __WIP_H__
|
|
#define __WIP_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
void wip_reset_counter();
|
|
void free_wip();
|
|
void do_wip_code(u8 * dst, u32 len);
|
|
void load_wip_patches(u8 *wippath, u8 *discid);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif //__WIP_H__
|