http://bugs.winehq.org/show_bug.cgi?id=24287
Piotr Caban piotr.caban@gmail.com changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |piotr.caban@gmail.com
--- Comment #3 from Piotr Caban piotr.caban@gmail.com 2010-09-06 16:42:51 CDT --- I've checked why the application is crashing. It's because cout is not implemented (you can change all cout's to printf and then some tests will be probably working).
The program is crashing because cout class (global structure) is not exported (and it's trying to read from it). In order to get past this crash ?cout@std@@3V?$basic_ostream@DU?$char_traits@D@std@@@1@A have to be implemented (it turns out there's no nice error message in data is not exported by dll).