2004-05-10 17:07:20 +00:00
|
|
|
#include <w32k.h>
|
2004-01-30 16:36:16 +00:00
|
|
|
|
2005-06-29 07:09:25 +00:00
|
|
|
#define NDEBUG
|
|
|
|
#include <debug.h>
|
|
|
|
|
2004-01-30 16:36:16 +00:00
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
ULONG
|
2008-11-29 22:48:58 +00:00
|
|
|
APIENTRY
|
2004-01-30 16:36:16 +00:00
|
|
|
EngGetLastError ( VOID )
|
|
|
|
{
|
|
|
|
// www.osr.com/ddk/graphics/gdifncs_3non.htm
|
|
|
|
return GetLastNtError();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* @implemented
|
|
|
|
*/
|
|
|
|
VOID
|
2008-11-29 22:48:58 +00:00
|
|
|
APIENTRY
|
2004-01-30 16:36:16 +00:00
|
|
|
EngSetLastError ( IN ULONG iError )
|
|
|
|
{
|
|
|
|
// www.osr.com/ddk/graphics/gdifncs_95m0.htm
|
|
|
|
SetLastNtError ( iError );
|
|
|
|
}
|