Author: tkreuzer Date: Wed Feb 9 09:31:37 2011 New Revision: 50626
URL: http://svn.reactos.org/svn/reactos?rev=50626&view=rev Log: [WIN32K] add missing file
Added: trunk/reactos/subsystems/win32/win32k/include/napi.h (with props)
Added: trunk/reactos/subsystems/win32/win32k/include/napi.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/inc... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/include/napi.h (added) +++ trunk/reactos/subsystems/win32/win32k/include/napi.h [iso-8859-1] Wed Feb 9 09:31:37 2011 @@ -1,0 +1,22 @@ +/* + * FILE: subsystems/win32/win32k/include/napi.h + * COPYRIGHT: GNU GPL, see COPYING in the top level directory + * PURPOSE: System Call Table for Native API + * PROGRAMMER: Timo Kreuzer + */ + +#define SVC_(name, argcount) (ULONG_PTR)Nt##name, +ULONG_PTR Win32kSSDT[] = { +#include "w32ksvc.h" +}; +#undef SVC_ + +#define SVC_(name, argcount) argcount * sizeof(void *), +UCHAR Win32kSSPT[] = { +#include "w32ksvc.h" +}; + +#define MIN_SYSCALL_NUMBER 0 +#define NUMBER_OF_SYSCALLS (sizeof(Win32kSSPT) / sizeof(Win32kSSPT[0])) +#define MAX_SYSCALL_NUMBER (NUMBER_OF_SYSCALLS - 1) +ULONG Win32kNumberOfSysCalls = NUMBER_OF_SYSCALLS;
Propchange: trunk/reactos/subsystems/win32/win32k/include/napi.h ------------------------------------------------------------------------------ svn:eol-style = native