2012-01-21 20:57:41 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Nuke (wiinuke@gmail.com)
|
|
|
|
*
|
|
|
|
* this file is part of GeckoOS for USB Gecko
|
|
|
|
* http://www.usbgecko.com
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __PATCHCODE_H__
|
|
|
|
#define __PATCHCODE_H__
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
// Globals
|
2012-09-07 21:24:15 +00:00
|
|
|
extern u32 hooktype;
|
|
|
|
extern u8 configbytes[2];
|
2012-01-21 20:57:41 +00:00
|
|
|
|
|
|
|
// Function prototypes
|
2021-09-25 20:00:02 +01:00
|
|
|
void deflicker_patch(void *addr, u32 len);
|
|
|
|
void patch_vfilters(void *addr, u32 len, u8 *vfilter);
|
|
|
|
void patch_vfilters_rogue(void *addr, u32 len, u8 *vfilter);
|
2012-10-14 17:18:13 +00:00
|
|
|
bool dogamehooks(void *addr, u32 len, bool channel);
|
2012-01-21 20:57:41 +00:00
|
|
|
void langpatcher(void *addr, u32 len);
|
|
|
|
void vidolpatcher(void *addr, u32 len);
|
2013-05-04 12:06:28 +00:00
|
|
|
void PatchVideoSneek(void *addr, u32 len);
|
2012-07-16 14:05:57 +00:00
|
|
|
void PatchCountryStrings(void *Address, int Size);
|
2012-01-27 13:59:36 +00:00
|
|
|
void PatchAspectRatio(void *addr, u32 len, u8 aspect);
|
2012-10-14 17:18:13 +00:00
|
|
|
bool PatchReturnTo(void *Address, int Size, u32 id);
|
2013-05-21 12:43:14 +00:00
|
|
|
void Patch_fwrite(void *Address, int Size);
|
2012-10-20 13:24:30 +00:00
|
|
|
s32 BlockIOSReload(void);
|
2014-02-16 20:12:35 +00:00
|
|
|
void PatchRegion(void *Address, int Size);
|
2019-09-23 09:20:22 -05:00
|
|
|
void PatchFix480p();
|
2018-12-15 17:11:17 +01:00
|
|
|
u32 do_new_wiimmfi();
|
2021-02-28 07:55:58 +01:00
|
|
|
u32 do_new_wiimmfi_nonMKWii();
|
2021-09-27 06:46:51 -05:00
|
|
|
void PrivateServerPatcher(void *addr, u32 len, u8 private_server, const char *serverAddr);
|
2016-04-02 15:46:06 +00:00
|
|
|
void domainpatcher(void *addr, u32 len, const char* domain);
|
2012-01-21 20:57:41 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // __PATCHCODE_H__
|