reactos/subsystems/win32/win32k/eng/error.c
Timo Kreuzer 6afbc8f483 Hopefully create a branch and not destroy the svn repository.
svn path=/branches/reactos-yarotows/; revision=45219
2010-01-23 23:25:04 +00:00

27 lines
349 B
C

#include <w32k.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 );
}