Commit 9191690c authored by Austin English's avatar Austin English Committed by Alexandre Julliard

ntoskrnl.exe: Add a stub for ProbeForRead.

parent d7742309
......@@ -2344,3 +2344,11 @@ void WINAPI KeLeaveCriticalRegion(void)
{
FIXME(": stub\n");
}
/***********************************************************************
* ProbeForRead (NTOSKRNL.EXE.@)
*/
void WINAPI ProbeForRead(void *address, SIZE_T length, ULONG alignment)
{
FIXME("(%p %lu %u) stub\n", address, length, alignment);
}
......@@ -835,7 +835,7 @@
@ stub PoShutdownBugCheck
@ stub PoStartNextPowerIrp
@ stub PoUnregisterSystemState
@ stub ProbeForRead
@ stdcall ProbeForRead(ptr long long)
@ stub ProbeForWrite
@ stub PsAssignImpersonationToken
@ stub PsChargePoolQuota
......
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