mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
27 lines
298 B
ArmAsm
27 lines
298 B
ArmAsm
|
|
#include <syscalls.inc>
|
|
|
|
/* This file only has the NT5 syscalls */
|
|
#define SYSFUNCS_NT5_ONLY
|
|
|
|
#ifdef _M_ARM
|
|
|
|
TEXTAREA
|
|
|
|
#define SVC_(name, argcount) STUB_U name
|
|
|
|
#include <sysfuncs.h>
|
|
|
|
END
|
|
|
|
#else
|
|
|
|
.code
|
|
|
|
#define SVC_(name, argcount) STUB_U name, argcount
|
|
|
|
#include <sysfuncs.h>
|
|
|
|
END
|
|
#endif
|