mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
Fix failing checks
This commit is contained in:
@@ -26,7 +26,6 @@ COPY /B /Y C:\Users\Default\NTUSER.DAT "%EMU_REGDIR%\NTUSER.DAT"
|
||||
|
||||
CALL :collect advapi32.dll
|
||||
CALL :collect bcrypt.dll
|
||||
CALL :collect bcryptprimitives.dll
|
||||
CALL :collect cfgmgr32.dll
|
||||
CALL :collect ci.dll
|
||||
CALL :collect combase.dll
|
||||
|
||||
@@ -259,8 +259,7 @@ namespace syscalls
|
||||
NTSTATUS handle_NtUnmapViewOfSection(const syscall_context& c, handle process_handle, uint64_t base_address);
|
||||
NTSTATUS handle_NtUnmapViewOfSectionEx(const syscall_context& c, handle process_handle, uint64_t base_address,
|
||||
ULONG /*flags*/);
|
||||
NTSTATUS handle_NtAreMappedFilesTheSame(const syscall_context& c, emulator_pointer address1,
|
||||
emulator_pointer address2);
|
||||
NTSTATUS handle_NtAreMappedFilesTheSame();
|
||||
|
||||
// syscalls/semaphore.cpp:
|
||||
NTSTATUS handle_NtOpenSemaphore(const syscall_context& c, emulator_object<handle> semaphore_handle,
|
||||
|
||||
@@ -308,8 +308,7 @@ namespace syscalls
|
||||
return handle_NtUnmapViewOfSection(c, process_handle, base_address);
|
||||
}
|
||||
|
||||
NTSTATUS handle_NtAreMappedFilesTheSame(const syscall_context& c, const emulator_pointer address1,
|
||||
const emulator_pointer address2)
|
||||
NTSTATUS handle_NtAreMappedFilesTheSame()
|
||||
{
|
||||
return STATUS_NOT_SUPPORTED;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user