2016-04-02 17:46:06 +02:00
|
|
|
#ifndef _APPLOADER_H_
|
|
|
|
#define _APPLOADER_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
/* Prototypes */
|
2019-09-23 16:20:22 +02:00
|
|
|
u32 Apploader_Run(u8 vidMode, GXRModeObj *vmode, bool vipatch, bool countryString, u8 patchVidModes, int aspectRatio, u32 returnTo,
|
2021-09-25 21:00:02 +02:00
|
|
|
bool patchregion, u8 private_server, bool patchFix480p, u8 deflicker, u8 bootType);
|
2020-11-29 01:20:39 +01:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PRIVSERV_OFF,
|
|
|
|
PRIVSERV_NOSSL,
|
|
|
|
PRIVSERV_WIIMMFI,
|
|
|
|
PRIVSERV_MAX_CHOICE
|
|
|
|
|
|
|
|
};
|
2016-04-02 17:46:06 +02:00
|
|
|
|
2021-09-25 21:00:02 +02:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
DEFLICKER_NORMAL,
|
|
|
|
DEFLICKER_OFF,
|
|
|
|
DEFLICKER_OFF_EXTENDED,
|
|
|
|
DEFLICKER_ON_LOW,
|
|
|
|
DEFLICKER_ON_MEDIUM,
|
|
|
|
DEFLICKER_ON_HIGH
|
|
|
|
};
|
|
|
|
|
2016-04-02 17:46:06 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif
|