Petr DlouhĂ˝ wrote:
This is fix for bug 13036 (http://bugs.winehq.org/show_bug.cgi?id=13036); It allows Faktury 4.1 to start.
+GpStatus WINGDIPAPI GdipGetImageFlags(GpImage* image, UINT *flags) +{
- static int calls;
- if(!image || !flags)
return InvalidParameter;
- if(!(calls++))
FIXME("not implemented\n");
- return Ok;
+}
You need to print paramenters this function is called with. And don't forget include the "magic" word "stub" in the text of the fixme.
Also why are you limiting number of printed fixmes?
Vitaliy.