mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
implemented SetLastErrorEx()
svn path=/trunk/; revision=5663
This commit is contained in:
parent
6569fdad17
commit
ccceb1f9ac
2 changed files with 16 additions and 17 deletions
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue