diff --git a/src/windows-emulator/syscalls.cpp b/src/windows-emulator/syscalls.cpp index 4dea7a78..4cce1844 100644 --- a/src/windows-emulator/syscalls.cpp +++ b/src/windows-emulator/syscalls.cpp @@ -283,12 +283,12 @@ namespace return STATUS_SUCCESS; } - auto handle_NtMapViewOfSection(const syscall_context& c, uint64_t section_handle, uint64_t process_handle, - emulator_object base_address, ULONG_PTR /*zero_bits*/, - SIZE_T /*commit_size*/, - const emulator_object /*section_offset*/, - const emulator_object view_size, SECTION_INHERIT /*inherit_disposition*/, - ULONG /*allocation_type*/, ULONG /*win32_protect*/) -> NTSTATUS + NTSTATUS handle_NtMapViewOfSection(const syscall_context& c, uint64_t section_handle, uint64_t process_handle, + emulator_object base_address, ULONG_PTR /*zero_bits*/, + SIZE_T /*commit_size*/, + const emulator_object /*section_offset*/, + const emulator_object view_size, SECTION_INHERIT /*inherit_disposition*/, + ULONG /*allocation_type*/, ULONG /*win32_protect*/) { if (process_handle != ~0ULL) {