Commit 9a4618a4 authored by Vincent Povirk's avatar Vincent Povirk Committed by Alexandre Julliard

gdiplus: Print the GdipCreateHalftonePalette FIXME only once.

parent 8ead1b57
...@@ -4481,7 +4481,12 @@ GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace ...@@ -4481,7 +4481,12 @@ GpStatus WINGDIPAPI GdipTransformPointsI(GpGraphics *graphics, GpCoordinateSpace
HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void) HPALETTE WINGDIPAPI GdipCreateHalftonePalette(void)
{ {
FIXME("\n"); static int calls;
TRACE("\n");
if (!calls++)
FIXME("stub\n");
return NULL; return NULL;
} }
......
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