WiiFlow_Lite/source/loader/nk.h
overjoy.psm 55e174b512 - ISO's for GC games that come with 2 disc are now dumped in 1 folder
- If a 2 disc GC game is launched with Devolution, tell Devolution the location of the 2nd disc*

* Use Wiiflow's game installer to backup your GC game

- Made check for Devolution more safe
- Added some neek2o magic (neek2o r90+ required*):
* Added an exit option to neek2o
* Added an option in gameconfig menu to launch vc/ww titles from wiiflow nand emulation in neek2o instead of cIOS
2012-07-22 18:02:56 +00:00

34 lines
499 B
C

#ifndef __NK_H__
#define __NK_H__
enum ExtNANDCfg
{
NCON_EXT_DI_PATH = (1<<0),
NCON_EXT_NAND_PATH = (1<<1),
};
typedef struct _memcfg
{
u32 magic;
u64 titleid;
u32 config;
u32 paddinga;
u32 paddingb;
u32 paddingc;
u32 paddingd;
char dipath[256];
char nandpath[256];
} memcfg;
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
s32 Launch_nk(u64 TitleID, const char *nandpath);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif //__NK_H__