]> git.saurik.com Git - wxWidgets.git/commitdiff
eVC 3.0 doesn't know ExitProcess() but _exit() is OK.
authorRobert Roebling <robert@roebling.de>
Mon, 12 Apr 2004 10:35:04 +0000 (10:35 +0000)
committerRobert Roebling <robert@roebling.de>
Mon, 12 Apr 2004 10:35:04 +0000 (10:35 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26722 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/wince/crt.cpp

index 50804e856b68bcd190fb9bb82044cfc5b725a78e..0e9e70c85ccccdeb6666c546caa57a2c447d769d 100644 (file)
@@ -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"