mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
21 lines
444 B
C
21 lines
444 B
C
#ifndef _RUNTIMEIOSPATCH_H_
|
|
#define _RUNTIMEIOSPATCH_H_
|
|
|
|
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
bool have_ahbprot();
|
|
u32 IosPatch_AHBPROT(bool verbose);
|
|
u32 IosPatch_RUNTIME(bool wii, bool sciifii, bool vwii, bool verbose);
|
|
u32 IosPatch_FULL(bool wii, bool sciifii, bool vwii, bool verbose, int IOS);
|
|
int get_libruntimeiospatch_version();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|