]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
compilation fix for pch-less build
[wxWidgets.git] / src / msw / wince / crt.cpp
index 0e9e70c85ccccdeb6666c546caa57a2c447d769d..740205e8e57b554b269a472291351d8914306edb 100644 (file)
@@ -51,9 +51,9 @@ 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);
 
@@ -70,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;
+}
+