Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygennapi.h
Go to the documentation of this file.
00001 /* 00002 * FILE: ntoskrnl/include/internal/napi.h 00003 * COPYRIGHT: GNU GPL, see COPYING in the top level directory 00004 * PURPOSE: System Call Table for Native API 00005 * PROGRAMMER: Timo Kreuzer 00006 */ 00007 00008 #define SVC_(name, argcount) (ULONG_PTR)Nt##name, 00009 ULONG_PTR MainSSDT[] = { 00010 #include "sysfuncs.h" 00011 }; 00012 #undef SVC_ 00013 00014 #define SVC_(name, argcount) argcount * sizeof(void *), 00015 UCHAR MainSSPT[] = { 00016 #include "sysfuncs.h" 00017 }; 00018 00019 #define MIN_SYSCALL_NUMBER 0 00020 #define NUMBER_OF_SYSCALLS (sizeof(MainSSPT) / sizeof(MainSSPT[0])) 00021 #define MAX_SYSCALL_NUMBER (NUMBER_OF_SYSCALLS - 1) 00022 ULONG MainNumberOfSysCalls = NUMBER_OF_SYSCALLS; Generated on Sat May 26 2012 04:36:07 for ReactOS by
1.7.6.1
|