YAWM-ModMii-Edition/source/appboot.h
0verjoY 0ed791842f - Added external app booter + code
- Added app load/launch code

Notes:
- Will add support for arguments later
2022-07-18 18:42:59 +02:00

8 lines
129 B
C

#ifndef __APPBOOT_H__
#define __APPBOOT_H__
bool LoadApp(const char* path);
u8* GetApp(u32* size);
void LaunchApp(void);
#endif