RetroArch/ctr/exec-3dsx/exec_3dsx.h

15 lines
420 B
C
Raw Normal View History

2019-02-03 15:38:41 -08:00
#ifndef EXEC_3DSX_H
#define EXEC_3DSX_H
2020-03-05 15:50:39 +01:00
/* 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 have no extra threads running when this is called,
* these limits do not apply to exec_cia
*/
2019-02-03 15:38:41 -08:00
int exec_3dsx_no_path_in_args(const char* path, const char** args);
2020-03-05 15:50:39 +01:00
2019-02-03 15:38:41 -08:00
int exec_3dsx(const char* path, const char** args);
2020-03-05 15:50:39 +01:00
#endif