gdiplus: Implemented GdipTranslateRegionI.

This commit is contained in:
Nikolay Sivov 2009-01-30 23:03:17 +03:00 committed by Alexandre Julliard
parent c3462b1101
commit cb8f4eb16c
1 changed files with 5 additions and 2 deletions

View File

@ -1139,9 +1139,12 @@ GpStatus WINGDIPAPI GdipTranslateRegion(GpRegion *region, REAL dx, REAL dy)
return Ok;
}
/*****************************************************************************
* GdipTranslateRegionI [GDIPLUS.@]
*/
GpStatus WINGDIPAPI GdipTranslateRegionI(GpRegion *region, INT dx, INT dy)
{
FIXME("(%p, %d, %d): stub\n", region, dx, dy);
TRACE("(%p, %d, %d)\n", region, dx, dy);
return NotImplemented;
return GdipTranslateRegion(region, (REAL)dx, (REAL)dy);
}