Type Definition quake3_native_vm::Syscall
source · pub type Syscall = extern "C" fn(arg: intptr_t, ...) -> intptr_t;
Expand description
Engine’s syscall function type
For communication from module to the engine’s syscall handler for this module, e.g. qagame
→ SV_GameSystemCalls
.
NOTE: The function is not really variadic, the actual number of arguments is an implementation detail.
See VM_DllSyscall
in ioquake3’s qcommon/vm.c
.