[Bug 8767] CreateDIBSection driver loading race
http://bugs.winehq.org/show_bug.cgi?id=8767 Nikolay Sivov <bunglehead(a)gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |bunglehead(a)gmail.com --- Comment #3 from Nikolay Sivov <bunglehead(a)gmail.com> 2008-05-16 15:51:10 --- I'm not able to compile you test application..problem is in fourth argument which should be (void**). After this modification: - dib = CreateDIBSection(NULL, &bmi, 0, (void *)buf, NULL, 0); + dib = CreateDIBSection(NULL, &bmi, 0, (void **)&buf, NULL, 0); it works for me on wine-1.0-rc1-g2470b0b (and on winxp of course too) Did I miss something? Please check it again with current git. -- Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email Do not reply to this email, post in Bugzilla using the above URL to reply. ------- You are receiving this mail because: ------- You are watching all bug changes.
participants (1)
-
wine-bugs@winehq.org