mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 00:55:06 +01:00
37787dbcd9
- Fixed Nand Emulation from SD-card. - Fixed "CheckSave" functions. - Fixed feature to flash a save file from emulated NAND back to real NAND. - Some minor code cleanups and bug fixes. neek2o: (neek2o r93+ only) - Fixed return to channel function for titles on emulated NAND - Added an option in wiiflow.ini: launchwiiflow in "NEEK2O" domain If this option is set to "no" the "exit to" option in home menu will launch neek2o SM instead of the "DWFA" channel. - If the return to channel option is set.. neek2o will return to that specific title if that title exists on the emulated nand, even if the title was launched from real NAND.
37 lines
609 B
C
37 lines
609 B
C
#ifndef __NK_H__
|
|
#define __NK_H__
|
|
|
|
enum ExtNANDCfg
|
|
{
|
|
NCON_EXT_DI_PATH = (1<<0),
|
|
NCON_EXT_NAND_PATH = (1<<1),
|
|
NCON_HIDE_EXT_PATH = (1<<2),
|
|
NCON_EXT_RETURN_TO = (1<<3),
|
|
};
|
|
|
|
typedef struct _memcfg
|
|
{
|
|
u32 magic;
|
|
u64 titleid;
|
|
u32 config;
|
|
u64 returnto;
|
|
u32 paddinga;
|
|
u32 paddingb;
|
|
char dipath[256];
|
|
char nandpath[256];
|
|
} memcfg;
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
s32 Launch_nk(u64 TitleID, const char *nandpath, u64 ReturnTo);
|
|
bool Load_Neek2o_Kernel();
|
|
bool neek2o(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif //__NK_H__
|