Commit e68c8669 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Add a trace for values of new ImageAttributes objects.

parent fa8c4f76
...@@ -47,14 +47,14 @@ GpStatus WINGDIPAPI GdipCloneImageAttributes(GDIPCONST GpImageAttributes *imagea ...@@ -47,14 +47,14 @@ GpStatus WINGDIPAPI GdipCloneImageAttributes(GDIPCONST GpImageAttributes *imagea
GpStatus WINGDIPAPI GdipCreateImageAttributes(GpImageAttributes **imageattr) GpStatus WINGDIPAPI GdipCreateImageAttributes(GpImageAttributes **imageattr)
{ {
TRACE("(%p)\n", imageattr);
if(!imageattr) if(!imageattr)
return InvalidParameter; return InvalidParameter;
*imageattr = GdipAlloc(sizeof(GpImageAttributes)); *imageattr = GdipAlloc(sizeof(GpImageAttributes));
if(!*imageattr) return OutOfMemory; if(!*imageattr) return OutOfMemory;
TRACE("<-- %p\n", *imageattr);
return Ok; return Ok;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment