Skip to content

Commit

Permalink
Some dummy syscall
Browse files Browse the repository at this point in the history
  • Loading branch information
momo5502 committed Nov 2, 2024
1 parent ec999fc commit 3707492
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/windows-emulator/syscalls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1599,6 +1599,11 @@ namespace
return STATUS_NOT_SUPPORTED;
}

NTSTATUS handle_NtGetNlsSectionPtr()
{
return STATUS_NOT_SUPPORTED;
}

NTSTATUS handle_NtAlpcSendWaitReceivePort(const syscall_context& c, const uint64_t port_handle,
const ULONG /*flags*/,
const emulator_object<PORT_MESSAGE> /*send_message*/,
Expand Down Expand Up @@ -2335,6 +2340,7 @@ void syscall_dispatcher::add_handlers(std::map<std::string, syscall_handler>& ha
add_handler(NtSetInformationFile);
add_handler(NtUserRegisterWindowMessage);
add_handler(NtQueryValueKey);
add_handler(NtGetNlsSectionPtr);

#undef add_handler
}

0 comments on commit 3707492

Please sign in to comment.