Commit 58e81212 authored by Olivier F. R. Dierick's avatar Olivier F. R. Dierick Committed by Alexandre Julliard

ntoskrnl.exe: Add Ke386QueryIoAccessMap stub.

Simply print a FIXME, instead of triggering the display of a terminal window to show 'call to unimplemented function' debugging info. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54380
parent ac1761d1
......@@ -3528,6 +3528,15 @@ BOOLEAN WINAPI Ke386IoSetAccessProcess(PEPROCESS *process, ULONG flag)
}
/*****************************************************
* Ke386QueryIoAccessMap (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI Ke386QueryIoAccessMap(ULONG flag, PVOID buffer)
{
FIXME("(%ld %p) stub\n", flag, buffer);
return FALSE;
}
/*****************************************************
* Ke386SetIoAccessMap (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI Ke386SetIoAccessMap(ULONG flag, PVOID buffer)
......
......@@ -526,7 +526,7 @@
@ stdcall KdRefreshDebuggerNotPresent()
@ stub Ke386CallBios
@ stdcall Ke386IoSetAccessProcess(ptr long)
@ stub Ke386QueryIoAccessMap
@ stdcall Ke386QueryIoAccessMap(long ptr)
@ stdcall Ke386SetIoAccessMap(long ptr)
@ stub KeAcquireInterruptSpinLock
@ stdcall KeAcquireSpinLockAtDpcLevel(ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment