>>>>> "Alexandre" == Alexandre Julliard <[EMAIL PROTECTED]> writes:
Alexandre> Steven Edwards <[EMAIL PROTECTED]> writes: >> I dont think I can help to much with reimplementing the >> CxxFrameHandler but if anyone decides to work on it I will set aside >> plenty of time to help them debug. (Hint, Hint) =) Alexandre> The real problem is having something to seriously test it. So Alexandre> if someone (hint, hint ;-) could write a test program Alexandre> exercising the various features of C++ exceptions and send me Alexandre> a binary of it built with VC++, I'll fix CxxFrameHandler. Here at home, I only have the author's edition of VC++, not allowing my to distributed compiled executables, but only the source. Appended program uses CxxFrameHandler and crashes in wine with builtin msvcrt, but not with native. Compile as Release version and include the MFC dll. Can somebody compile for Alexandre? Alexandre, is this a start or do you need something complete? Perhaps I manage to compile tomorrow at work, but I have to leave early for a travel... Bye -- Uwe Bonnes [EMAIL PROTECTED] Institut fuer Kernphysik Schlossgartenstrasse 9 64289 Darmstadt --------- Tel. 06151 162516 -------- Fax. 06151 164321 ---------- #include <iostream.h> #include <string.h> int main() { try { cout << "Hello World!\n"; throw "fault"; return 0; } catch(...) { cerr << "Error" << endl; } }