diff --git a/headers/private/kernel/ksyscalls.h b/headers/private/kernel/ksyscalls.h index 90accc6ab4..2ed3282584 100755 --- a/headers/private/kernel/ksyscalls.h +++ b/headers/private/kernel/ksyscalls.h @@ -9,6 +9,15 @@ #include +typedef struct { + void *function; // pointer to the syscall function + int parameter_size; // summed up parameter size +} syscall_info; + +extern const int kSyscallCount; +extern const syscall_info kSyscallInfos[]; + + #ifdef __cplusplus extern "C" { #endif