mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
26 lines
349 B
C
26 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 );
|
|
}
|