mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +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;
|
||||
}
|
||||
|
||||
virtual ~Image()
|
||||
{
|
||||
DllExports::GdipDisposeImage(image);
|
||||
}
|
||||
|
||||
static Image *FromFile(const WCHAR *filename, BOOL useEmbeddedColorManagement = FALSE)
|
||||
{
|
||||
return new Image(filename, useEmbeddedColorManagement);
|
||||
|
|
Loading…
Reference in a new issue