Re: stub implementation of GdipImageGetFrameDimensionsCount and GdipGetImageFlags
May 12, 2008
1:20 p.m.
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.
6530
Age (days ago)
6530
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vitaliy Margolen