mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 16:59:04 +00:00
20 lines
259 B
C
20 lines
259 B
C
#ifndef _SYSCALLS_H_
|
|
#define _SYSCALLS_H_
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
enum { NUM_SYSCALLS = 0x80 };
|
|
|
|
void syscall_get_name(char *output, size_t size, unsigned int call_num);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|