http://bugs.winehq.org/show_bug.cgi?id=8767
Nikolay Sivov bunglehead@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bunglehead@gmail.com
--- Comment #3 from Nikolay Sivov bunglehead@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.