mirror of
https://github.com/DarkStore-3DS/Project_CTR.git
synced 2026-07-03 00:39:14 +00:00
Added support for --showsyscalls, which shows the names of the system calls, rather than just their IDs.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user