reactos/subsystems/win32/win32k/eng/error.c
Jérôme Gardou 88c9e7c6e8 Sync with trunk (r47116), hopefully without breaking anything.
svn path=/branches/reactos-yarotows/; revision=47117
2010-05-07 07:41:13 +00:00

27 lines
351 B
C

#include <win32k.h>
#define NDEBUG
#include <debug.h>
/*
* @implemented
*/
ULONG
APIENTRY
EngGetLastError ( VOID )
{
// www.osr.com/ddk/graphics/gdifncs_3non.htm
return GetLastNtError();
}
/*
* @implemented
*/
VOID
APIENTRY
EngSetLastError ( IN ULONG iError )
{
// www.osr.com/ddk/graphics/gdifncs_95m0.htm
SetLastNtError ( iError );
}