From ccceb1f9acafc2891c1bf5784d79cb473847141f Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Tue, 19 Aug 2003 01:31:15 +0000 Subject: [PATCH] implemented SetLastErrorEx() svn path=/trunk/; revision=5663 --- reactos/lib/user32/misc/stubs.c | 15 +-------------- reactos/lib/user32/windows/window.c | 18 +++++++++++++++--- 2 files changed, 16 insertions(+), 17 deletions(-) diff --git a/reactos/lib/user32/misc/stubs.c b/reactos/lib/user32/misc/stubs.c index e19b7a0d14e..f6d8a8930c4 100644 --- a/reactos/lib/user32/misc/stubs.c +++ b/reactos/lib/user32/misc/stubs.c @@ -1,4 +1,4 @@ -/* $Id: stubs.c,v 1.32 2003/08/18 09:59:29 silverblade Exp $ +/* $Id: stubs.c,v 1.33 2003/08/19 01:31:15 weiden Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS user32.dll @@ -421,19 +421,6 @@ SetDoubleClickTime( } -/* - * @unimplemented - */ -VOID -STDCALL -SetLastErrorEx( - DWORD dwErrCode, - DWORD dwType) -{ - UNIMPLEMENTED; -} - - /* * @unimplemented */ diff --git a/reactos/lib/user32/windows/window.c b/reactos/lib/user32/windows/window.c index 1b03ee844a3..5ae2e79341e 100644 --- a/reactos/lib/user32/windows/window.c +++ b/reactos/lib/user32/windows/window.c @@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.67 2003/08/19 00:36:40 weiden Exp $ +/* $Id: window.c,v 1.68 2003/08/19 01:31:15 weiden Exp $ * * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS user32.dll @@ -1690,12 +1690,24 @@ InternalGetWindowText(HWND hWnd, LPWSTR lpString, int nMaxCount) } /* - * @implemented + * @unimplemented */ -WINBOOL STDCALL IsHungAppWindow(HWND hwnd) +WINBOOL +STDCALL +IsHungAppWindow(HWND hwnd) { /* FIXME: ReactOS doesnt identify hung app windows yet */ return FALSE; } +/* + * @implemented + */ +VOID +STDCALL +SetLastErrorEx(DWORD dwErrCode, DWORD dwType) +{ + SetLastError(dwErrCode); +} + /* EOF */