From c1edc08df3301e5fc865a6f8d13b64153923162c Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Mon, 12 Apr 2004 10:35:04 +0000 Subject: [PATCH] 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 --- src/msw/wince/crt.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- 2.49.0