mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 19:52:56 +00:00
[SDK][INCLUDE] Add Gdiplus::Image::~Image (#2174)
Gdiplus::Image had no dtor. CORE-16566
This commit is contained in:
parent
1ee511a10c
commit
3f9e695061
1 changed files with 5 additions and 0 deletions
|
@ -47,6 +47,11 @@ public:
|
||||||
return newImage;
|
return newImage;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual ~Image()
|
||||||
|
{
|
||||||
|
DllExports::GdipDisposeImage(image);
|
||||||
|
}
|
||||||
|
|
||||||
static Image *FromFile(const WCHAR *filename, BOOL useEmbeddedColorManagement = FALSE)
|
static Image *FromFile(const WCHAR *filename, BOOL useEmbeddedColorManagement = FALSE)
|
||||||
{
|
{
|
||||||
return new Image(filename, useEmbeddedColorManagement);
|
return new Image(filename, useEmbeddedColorManagement);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue