]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
added support for 2 extra mouse buttons (patch 1757630)
[wxWidgets.git] / src / msw / wince / crt.cpp
index 0e9e70c85ccccdeb6666c546caa57a2c447d769d..29e1cb701914aa86970ae6968d6d9a8f9f6b4540 100644 (file)
@@ -53,7 +53,7 @@ void abort()
     if ( wxTheApp )
         name = wxTheApp->GetAppName();
     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;
+}
+