mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
15 lines
420 B
C
15 lines
420 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 have no extra threads running when this is called,
|
|
* these limits do not apply to exec_cia
|
|
*/
|
|
int exec_3dsx_no_path_in_args(const char* path, const char** args);
|
|
|
|
int exec_3dsx(const char* path, const char** args);
|
|
|
|
#endif
|