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

ntoskrnl.exe: add a stub for IoSetThreadHardErrorMode.

parent dbc0e72d
......@@ -1628,6 +1628,16 @@ NTSTATUS WINAPI PsLookupProcessByProcessId(HANDLE processid, PEPROCESS *process)
return STATUS_NOT_IMPLEMENTED;
}
/*****************************************************
* IoSetThreadHardErrorMode (NTOSKRNL.EXE.@)
*/
BOOLEAN WINAPI IoSetThreadHardErrorMode(BOOLEAN EnableHardErrors)
{
FIXME("stub\n");
return FALSE;
}
/*****************************************************
* DllMain
*/
......
......@@ -456,7 +456,7 @@
@ stub IoSetShareAccess
@ stub IoSetStartIoAttributes
@ stub IoSetSystemPartition
@ stub IoSetThreadHardErrorMode
@ stdcall IoSetThreadHardErrorMode(long)
@ stub IoSetTopLevelIrp
@ stub IoStartNextPacket
@ stub IoStartNextPacketByKey
......
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