]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
Don't close arcs drawn in wxPostScriptDC.
[wxWidgets.git] / src / msw / wince / crt.cpp
index 50804e856b68bcd190fb9bb82044cfc5b725a78e..87f781002f08fafb647ab1cad6dafd78f9556544 100644 (file)
@@ -1,10 +1,10 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        wince/crt.cpp
+// Name:        src/msw/wince/crt.cpp
 // Purpose:     Implementation of CRT functions missing under Windows CE
 // Author:      Vadim Zeitlin
 // Modified by:
 // Created:     03.04.04
-// RCS-ID:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -51,13 +51,14 @@ void abort()
 {
     wxString name;
     if ( wxTheApp )
-        name = wxTheApp->GetAppName();
+        name = wxTheApp->GetAppDisplayName();
     if ( name.empty() )
-        name = L"wxWindows Application";
+        name = L"wxWidgets Application";
 
     MessageBox(NULL, L"Abnormal program termination", name, MB_ICONHAND | MB_OK);
 
-    ::ExitProcess(3);
+    _exit(3);
+//    ::ExitProcess(3);
 }
 
 extern "C"
@@ -69,3 +70,13 @@ char *getenv(const char * WXUNUSED(name))
     return NULL;
 }
 
+int wxCRT_Rename(const wchar_t *src, const wchar_t *dst)
+{
+    return ::MoveFile(src, dst) ? 0 : -1;
+}
+
+int wxCRT_Remove(const wchar_t *path)
+{
+    return ::DeleteFile(path) ? 0 : -1;
+}
+