WiiFlow_Lite/resources/wiiflow_game_booter/source/apploader.h
Fledge68 ff94e73be8 - beta 4
- added 'no SSL only' as a private server choice (issue #217). this allows you to patch games on your own with other wifi server url's besides wiimmfi.
- added private server as an option for nand wiiware games.
- added 480p pixel patch as option for nand wiiware/vc games. seems to only work if apploader is set to ON. loading via main dol is broke for the time being.
2020-11-28 18:20:39 -06:00

26 lines
493 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, bool patchFix480p, u8 bootType);
enum
{
PRIVSERV_OFF,
PRIVSERV_NOSSL,
PRIVSERV_WIIMMFI,
PRIVSERV_MAX_CHOICE
};
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif