Commit 9c4df210 authored by Jon Griffiths's avatar Jon Griffiths Committed by Alexandre Julliard

SetMiterLimit: Return success: some callers check this.

parent 378dec15
......@@ -1462,8 +1462,10 @@ BOOL WINAPI GetMiterLimit(HDC hdc, PFLOAT peLimit)
*/
BOOL WINAPI SetMiterLimit(HDC hdc, FLOAT eNewLimit, PFLOAT peOldLimit)
{
FIXME("SetMiterLimit, stub\n");
return 0;
FIXME("(%p,%f,%p) stub\n", hdc, eNewLimit, peOldLimit);
if (peOldLimit)
*peOldLimit = 10.0; /* Default miter is 10, see msdn */
return TRUE;
}
/*******************************************************************
......
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