Add more syscalls

This commit is contained in:
momo5502
2025-06-15 19:48:05 +02:00
parent 8ece8a556d
commit bda89b5d1e
3 changed files with 100 additions and 1 deletions

View File

@@ -611,6 +611,11 @@ namespace syscalls
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtCreateDebugObject()
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtAddAtomEx(const syscall_context& c, const uint64_t atom_name, const ULONG length,
const emulator_object<RTL_ATOM> atom, const ULONG /*flags*/)
{
@@ -1179,6 +1184,7 @@ void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& ha
add_handler(NtQuerySecurityObject);
add_handler(NtQueryEvent);
add_handler(NtRemoveIoCompletionEx);
add_handler(NtCreateDebugObject);
#undef add_handler
}