Re: stub implementation of GdipImageGetFrameDimensionsCount and GdipGetImageFlags
12 May
2008
12 May
'08
2: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.
6513
Age (days ago)
6513
Last active (days ago)
0 comments
1 participants
participants (1)
-
Vitaliy Margolen