mirror of
https://github.com/Fledge68/WiiFlow_Lite.git
synced 2024-11-01 09:05:06 +01:00
34 lines
499 B
C
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__
|