mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[WIN32K]
add missing file svn path=/trunk/; revision=50626
This commit is contained in:
parent
014ff8c894
commit
ebe0662d8c
1 changed files with 22 additions and 0 deletions
22
reactos/subsystems/win32/win32k/include/napi.h
Normal file
22
reactos/subsystems/win32/win32k/include/napi.h
Normal file
|
@ -0,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;
|
Loading…
Reference in a new issue