Add missing syscalls

This commit is contained in:
momo5502
2025-12-07 11:22:37 +01:00
parent 568ca68481
commit ca15abd8ef

View File

@@ -1009,6 +1009,21 @@ namespace syscalls
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtSetInformationDebugObject()
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtRemoveProcessDebug()
{
return STATUS_NOT_SUPPORTED;
}
NTSTATUS handle_NtNotifyChangeDirectoryFileEx()
{
return STATUS_NOT_SUPPORTED;
}
}
void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& handler_mapping)
@@ -1217,6 +1232,9 @@ void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& ha
add_handler(NtAlpcCreateSecurityContext);
add_handler(NtAlpcDeleteSecurityContext);
add_handler(NtSetSecurityObject);
add_handler(NtSetInformationDebugObject);
add_handler(NtRemoveProcessDebug);
add_handler(NtNotifyChangeDirectoryFileEx);
#undef add_handler
}