]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/crt.cpp
many compilation fixes for WinCE using VC8 (it now build, although still doesn't...
[wxWidgets.git] / src / msw / wince / crt.cpp
index 2b283f0e958cf44387bd63a3f9c59936cd88a5cf..29e1cb701914aa86970ae6968d6d9a8f9f6b4540 100644 (file)
@@ -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;
+}
+