Stub NtSetSecurityObject

This commit is contained in:
Igor Pissolati
2025-10-22 17:20:14 -03:00
parent d20da12052
commit c07f541528
2 changed files with 7 additions and 0 deletions

View File

@@ -155,6 +155,7 @@ namespace syscalls
NTSTATUS handle_NtSetInformationObject();
NTSTATUS handle_NtQuerySecurityObject(const syscall_context& c, handle /*h*/, SECURITY_INFORMATION /*security_information*/,
emulator_pointer security_descriptor, ULONG length, emulator_object<ULONG> length_needed);
NTSTATUS handle_NtSetSecurityObject();
// syscalls/port.cpp:
NTSTATUS handle_NtConnectPort(const syscall_context& c, emulator_object<handle> client_port_handle,
@@ -1180,6 +1181,7 @@ void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& ha
add_handler(NtReleaseWorkerFactoryWorker);
add_handler(NtAlpcCreateSecurityContext);
add_handler(NtAlpcDeleteSecurityContext);
add_handler(NtSetSecurityObject);
#undef add_handler
}