mirror of
https://github.com/reactos/reactos.git
synced 2025-04-15 10:03:56 +00:00
[WIN32K]
Fix MIN_SYSCALL_NUMBER and MAX_SYSCALL_NUMBER svn path=/trunk/; revision=52656
This commit is contained in:
parent
cfbbc68e9f
commit
46d0ab4eb9
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ UCHAR Win32kSSPT[] = {
|
|||
#include "w32ksvc.h"
|
||||
};
|
||||
|
||||
#define MIN_SYSCALL_NUMBER 0
|
||||
#define MIN_SYSCALL_NUMBER 0x1000
|
||||
#define NUMBER_OF_SYSCALLS (sizeof(Win32kSSPT) / sizeof(Win32kSSPT[0]))
|
||||
#define MAX_SYSCALL_NUMBER (NUMBER_OF_SYSCALLS - 1)
|
||||
#define MAX_SYSCALL_NUMBER 0x1000 + (NUMBER_OF_SYSCALLS - 1)
|
||||
ULONG Win32kNumberOfSysCalls = NUMBER_OF_SYSCALLS;
|
||||
|
|
Loading…
Reference in a new issue