mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +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.
17 lines
206 B
ArmAsm
17 lines
206 B
ArmAsm
|
|
#include <asm.inc>
|
|
#include <syscalls.inc>
|
|
|
|
.code
|
|
|
|
SyscallId = HEX(1000)
|
|
#define SVC_(name, argcount) STUB_U name, argcount
|
|
|
|
#ifdef _M_AMD64
|
|
#include <w32ksvc64.h>
|
|
#else
|
|
#include <w32ksvc32.h>
|
|
#endif
|
|
|
|
END
|