From: Robert Roebling Date: Mon, 12 Apr 2004 10:35:04 +0000 (+0000) Subject: eVC 3.0 doesn't know ExitProcess() but _exit() is OK. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/c1edc08df3301e5fc865a6f8d13b64153923162c?ds=sidebyside eVC 3.0 doesn't know ExitProcess() but _exit() is OK. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/wince/crt.cpp b/src/msw/wince/crt.cpp index 50804e856b..0e9e70c85c 100644 --- a/src/msw/wince/crt.cpp +++ b/src/msw/wince/crt.cpp @@ -57,7 +57,8 @@ void abort() MessageBox(NULL, L"Abnormal program termination", name, MB_ICONHAND | MB_OK); - ::ExitProcess(3); + _exit(3); +// ::ExitProcess(3); } extern "C"