http://bugs.winehq.org/show_bug.cgi?id=14229
--- Comment #2 from Dan Kegel dank@kegel.com 2008-07-01 19:10:42 --- Created an attachment (id=14516) --> (http://bugs.winehq.org/attachment.cgi?id=14516) Source and executable for tiny demo program
Simple test app source and binary. The app source is:
int demofunc(float arg1) { DebugBreak(); printf("arg1 is %f\n", arg1); return (int) arg1; }
int main(int argc, char* argv[]) { printf("Hello World! %d\n", demofunc((float)argc)); return 0; }
and was compiled in wine in visual c++ 6.