stub implementation of GdipImageGetFrameDimensionsCount and GdipGetImageFlags

Vitaliy Margolen wine-devel at kievinfo.com
Mon May 12 08:20:08 CDT 2008


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.



More information about the wine-devel mailing list