Activate CloseEnhMetaFile in gdi32.

We do not leak memory from CreateEnhMetaFile.
 

svn path=/trunk/; revision=24176
This commit is contained in:
Magnus Olsen 2006-09-17 20:22:27 +00:00
parent d3eeef4046
commit fa61787952
2 changed files with 12 additions and 13 deletions

View file

@ -464,19 +464,7 @@ EnumMetaFile(
}
/*
* @unimplemented
*/
HENHMETAFILE
STDCALL
CloseEnhMetaFile(
HDC hdc
)
{
UNIMPLEMENTED;
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
return FALSE;
}
/*

View file

@ -1,5 +1,16 @@
#include "precomp.h"
/*
* @unimplemented
*/
HENHMETAFILE
STDCALL
CloseEnhMetaFile(
HDC hdc)
{
return NtGdiCloseEnhMetaFile(hdc);
}
/*
* @implemented
*/