-int wxEntry(int& argc, wxChar **argv)
-{
- __try
- {
- return wxEntryReal(argc, argv);
- }
- __except ( wxGlobalSEHandler(GetExceptionInformation()) )
- {
-#ifdef __WXWINCE__
- ::ExitThread(3); // the same exit code as abort()
-#else
- ::ExitProcess(3); // the same exit code as abort()
-#endif
-
-#if !defined(_MSC_VER) || _MSC_VER < 1300
- // this code is unreachable but put it here to suppress warnings
- // from some compilers
- return -1;
-#endif