mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-24 04:09:15 +01:00
bdefb68ff6
[CUSTOM_SERVERS] servers=AltWFC|NewWFC AltWFC_url=zwei.moe NewWFC_url=newwfc.xyz the servers are separated by '|'. use the server name before '_url='
36 lines
674 B
C
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
|