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

This commit is contained in:
Vincent Povirk 2009-12-18 15:21:30 -06:00 committed by Alexandre Julliard
parent fa8c4f7633
commit e68c866956
1 changed files with 2 additions and 2 deletions

View File

@ -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;
} }