mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-05 02:55:07 +01:00
38 lines
1.3 KiB
C
38 lines
1.3 KiB
C
#ifndef GAMEPATCHES_H_
|
|
#define GAMEPATCHES_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <gccore.h>
|
|
|
|
void RegisterDOL(u8 *dst, int len);
|
|
void ClearDOLList();
|
|
void gamepatches(u8 videoSelected, u8 videoPatchDol, u8 aspectForce, u8 languageChoice, u8 patchcountrystring,
|
|
u8 vipatch, u8 deflicker, u8 sneekVideoPatch, u8 hooktype, u64 returnTo, u8 privateServer, const char *serverAddr);
|
|
void anti_002_fix(u8 *addr, u32 len);
|
|
void deflicker_patch(u8 *addr, u32 len);
|
|
void patch_vfilters(u8 *addr, u32 len, u8 *vfilter);
|
|
void patch_vfilters_rogue(u8 *addr, u32 len, u8 *vfilter);
|
|
void PrivateServerPatcher(void *addr, u32 len, u8 privateServer, const char *serverAddr);
|
|
void PatchFix480p();
|
|
s8 do_new_wiimmfi();
|
|
s8 do_new_wiimmfi_nonMKWii(void *addr, u32 len);
|
|
void domainpatcher(void *addr, u32 len, const char *domain);
|
|
bool patch_nsmb(u8 *gameid);
|
|
bool patch_pop(u8 *gameid);
|
|
void patch_error_codes(u8 *gameid);
|
|
void VideoModePatcher(u8 *dst, int len, u8 videoSelected, u8 VideoPatchDol);
|
|
void sneek_video_patch(void *addr, u32 len);
|
|
bool PatchReturnTo(void *Address, int Size, u32 id);
|
|
int PatchNewReturnTo(int es_fd, u64 title);
|
|
int BlockIOSReload(int es_fd, u32 gameIOS);
|
|
void PatchAspectRatio(void *addr, u32 len, u8 aspect);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|