mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 16:51:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
26 lines
351 B
C
26 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 );
|
|
}
|