1 /* 2 * FILE: ntoskrnl/include/internal/napi.h 3 * COPYRIGHT: GNU GPL, see COPYING in the top level directory 4 * PURPOSE: System Call Table for Native API 5 * PROGRAMMER: Timo Kreuzer 6 */ 7 8 #define SVC_(name, argcount) (ULONG_PTR)Nt##name, 9 ULONG_PTR MainSSDT[] = { 10 #include "sysfuncs.h" 11 }; 12 #undef SVC_ 13 14 #define SVC_(name, argcount) argcount * sizeof(void *), 15 UCHAR MainSSPT[] = { 16 #include "sysfuncs.h" 17 }; 18 19 #define MIN_SYSCALL_NUMBER 0 20 #define NUMBER_OF_SYSCALLS (sizeof(MainSSPT) / sizeof(MainSSPT[0])) 21 #define MAX_SYSCALL_NUMBER (NUMBER_OF_SYSCALLS - 1) 22 ULONG MainNumberOfSysCalls = NUMBER_OF_SYSCALLS; 23