mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
8f9ef68ea7
- Delete the win32ksvc-ros.h file, which was not used - Use a separate file for x64 (based on 2k3 x64 free) - Delete w32ksvc.db. It's unused since ages.
16 lines
223 B
ArmAsm
16 lines
223 B
ArmAsm
|
|
#include <asm.inc>
|
|
#include <syscalls.inc>
|
|
|
|
.code
|
|
|
|
SyscallId = HEX(1000)
|
|
#define SVC_(name, argcount) STUB_U name, argcount
|
|
|
|
#ifdef _M_AMD64
|
|
#include "win32ksvc-2k3sp2-64.h"
|
|
#else
|
|
#include "win32ksvc-2k3sp2.h"
|
|
#endif
|
|
|
|
END
|