RetroArch/ctr/exec-3dsx/exec_3dsx.h
meepingsnesroms 1a6f572405 Fixes
2018-05-09 18:23:35 -07:00

8 lines
314 B
C

#ifndef EXEC_3DSX_H
#define EXEC_3DSX_H
//since 3dsx programs are not guaranteed access to the OS, the 3dsx bootloader run by the exploit must run the next program
//your program must call this then exit gracefully to work, exit() also doesnt work
int exec_3dsx(const char* path, const char* args);
#endif