Commit daf0cba8 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add a stub for Ke386SetIoAccessMap.

parent 60bd62b0
......@@ -1742,3 +1742,12 @@ BOOLEAN WINAPI Ke386IoSetAccessProcess(PEPROCESS *process, ULONG flag)
FIXME("(%p %d) stub\n", process, flag);
return FALSE;
}
/*****************************************************
* Ke386SetIoAccessMap (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI Ke386SetIoAccessMap(ULONG flag, PVOID buffer)
{
FIXME("(%d %p) stub\n", flag, buffer);
return FALSE;
}
......@@ -505,7 +505,7 @@
@ stub Ke386CallBios
@ stdcall Ke386IoSetAccessProcess(ptr long)
@ stub Ke386QueryIoAccessMap
@ stub Ke386SetIoAccessMap
@ stdcall Ke386SetIoAccessMap(long ptr)
@ stub KeAcquireInterruptSpinLock
@ stub KeAcquireSpinLockAtDpcLevel
@ stub KeAddSystemServiceTable
......
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