]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
Correct flat notebook border style under WinCE in wake of
[wxWidgets.git] / src / msw / wince / crt.cpp
index 058e7b260a7a0df0d5e55b15598b2f73b112e17e..2b283f0e958cf44387bd63a3f9c59936cd88a5cf 100644 (file)
@@ -9,14 +9,18 @@
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
-#include "wx/msw/wince/missing.h"
-
 #include "wx/wxprec.h"
 
 #ifdef __BORLANDC__
   #pragma hdrstop
 #endif
 
+#ifndef WX_PRECOMP
+    #include "wx/app.h"
+#endif
+
+#include "wx/msw/wince/missing.h"
+
 extern "C" void *
 bsearch(const void *key, const void *base, size_t num, size_t size,
         int (wxCMPFUNC_CONV *cmp)(const void *, const void *))
@@ -42,4 +46,27 @@ bsearch(const void *key, const void *base, size_t num, size_t size,
     return NULL;
 }
 
+extern "C"
+void abort()
+{
+    wxString name;
+    if ( wxTheApp )
+        name = wxTheApp->GetAppName();
+    if ( name.empty() )
+        name = L"wxWidgets Application";
+
+    MessageBox(NULL, L"Abnormal program termination", name, MB_ICONHAND | MB_OK);
+
+    _exit(3);
+//    ::ExitProcess(3);
+}
+
+extern "C"
+char *getenv(const char * WXUNUSED(name))
+{
+    // no way to implement it in Unicode-only environment without using
+    // wxCharBuffer and it is of no use in C code which uses this function
+    // (libjpeg)
+    return NULL;
+}