Commit 819d049f authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

krnl386: Add GetLPErrMode stub.

parent 04d1cab1
......@@ -100,7 +100,7 @@
96 pascal -ret16 FreeLibrary(word) FreeLibrary16
97 pascal -ret16 GetTempFileName(word str word ptr) GetTempFileName16
98 pascal -ret16 GetLastDiskChange() KERNEL_nop
99 stub GetLPErrMode
99 pascal GetLPErrMode()
100 pascal -ret16 ValidateCodeSegments() KERNEL_nop
101 stub NoHookDosCall
102 pascal -register DOS3Call() DOS3Call
......
......@@ -1256,6 +1256,16 @@ WORD WINAPI GetExeVersion16(void)
/***********************************************************************
* GetLPErrMode (KERNEL.99)
*/
SEGPTR WINAPI GetLPErrMode(void)
{
FIXME("(): stub\n");
return 0;
}
/***********************************************************************
* SetErrorMode (KERNEL.107)
*/
UINT16 WINAPI SetErrorMode16( UINT16 mode )
......
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