mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 10:05:20 +00:00
Activate CloseEnhMetaFile in gdi32.
We do not leak memory from CreateEnhMetaFile. svn path=/trunk/; revision=24176
This commit is contained in:
parent
d3eeef4046
commit
fa61787952
2 changed files with 12 additions and 13 deletions
|
@ -464,19 +464,7 @@ EnumMetaFile(
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
|
||||||
* @unimplemented
|
|
||||||
*/
|
|
||||||
HENHMETAFILE
|
|
||||||
STDCALL
|
|
||||||
CloseEnhMetaFile(
|
|
||||||
HDC hdc
|
|
||||||
)
|
|
||||||
{
|
|
||||||
UNIMPLEMENTED;
|
|
||||||
SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -1,5 +1,16 @@
|
||||||
#include "precomp.h"
|
#include "precomp.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
* @unimplemented
|
||||||
|
*/
|
||||||
|
HENHMETAFILE
|
||||||
|
STDCALL
|
||||||
|
CloseEnhMetaFile(
|
||||||
|
HDC hdc)
|
||||||
|
{
|
||||||
|
return NtGdiCloseEnhMetaFile(hdc);
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* @implemented
|
* @implemented
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue