mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 20:02:55 +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.
30 lines
308 B
ArmAsm
30 lines
308 B
ArmAsm
|
|
#include <syscalls.inc>
|
|
|
|
#ifdef _M_ARM
|
|
|
|
TEXTAREA
|
|
|
|
#define SVC_(name, argcount) STUB_U name
|
|
|
|
#include "w32ksvc32.h"
|
|
|
|
END
|
|
|
|
#else
|
|
|
|
.code
|
|
|
|
SyscallId = HEX(1000)
|
|
#define SVC_(name, argcount) STUB_U name, argcount
|
|
|
|
#ifdef _WIN64
|
|
#include "w32ksvc64.h"
|
|
#else
|
|
#include "w32ksvc32.h"
|
|
#endif
|
|
|
|
END
|
|
#endif
|
|
|