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
This commit is contained in:
parent
ac1761d1da
commit
58e81212fc
2 changed files with 10 additions and 1 deletions
|
@ -3527,6 +3527,15 @@ BOOLEAN WINAPI Ke386IoSetAccessProcess(PEPROCESS *process, ULONG flag)
|
|||
return FALSE;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
* Ke386QueryIoAccessMap (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
BOOLEAN WINAPI Ke386QueryIoAccessMap(ULONG flag, PVOID buffer)
|
||||
{
|
||||
FIXME("(%ld %p) stub\n", flag, buffer);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/*****************************************************
|
||||
* Ke386SetIoAccessMap (NTOSKRNL.EXE.@)
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue