krnl386: Add GetLPErrMode stub.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52102
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 819d049f12)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Alex Henrie 2021-12-01 22:35:23 -07:00 committed by Michael Stefaniuc
parent 4c16e0f20b
commit 05bcb3cde0
2 changed files with 11 additions and 1 deletions

View File

@ -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

View File

@ -1255,6 +1255,16 @@ WORD WINAPI GetExeVersion16(void)
}
/***********************************************************************
* GetLPErrMode (KERNEL.99)
*/
SEGPTR WINAPI GetLPErrMode(void)
{
FIXME("(): stub\n");
return 0;
}
/***********************************************************************
* SetErrorMode (KERNEL.107)
*/