WiiFlow_Lite/resources/wiiflow_game_booter/source/apploader.h
Fledge68 bdefb68ff6 - added ability to use custom private servers #261. add them to wiiflow_lite.ini like this:
[CUSTOM_SERVERS]
servers=AltWFC|NewWFC
AltWFC_url=zwei.moe
NewWFC_url=newwfc.xyz

the servers are separated by '|'.
use the server name before '_url='
2021-09-27 06:46:51 -05:00

36 lines
674 B
C

#ifndef _APPLOADER_H_
#define _APPLOADER_H_
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Prototypes */
u32 Apploader_Run(u8 vidMode, GXRModeObj *vmode, bool vipatch, bool countryString, u8 patchVidModes, int aspectRatio, u32 returnTo,
bool patchregion, u8 private_server, const char * server_addr, bool patchFix480p, u8 deflicker, u8 bootType);
enum
{
PRIVSERV_OFF,
PRIVSERV_NOSSL,
PRIVSERV_WIIMMFI,
PRIVSERV_MAX_CHOICE
};
enum
{
DEFLICKER_NORMAL,
DEFLICKER_OFF,
DEFLICKER_OFF_EXTENDED,
DEFLICKER_ON_LOW,
DEFLICKER_ON_MEDIUM,
DEFLICKER_ON_HIGH
};
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif