]> 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 0c52cb2fb18443d7edc5802228ac6241986a4239..29e1cb701914aa86970ae6968d6d9a8f9f6b4540 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     03.04.04
 // RCS-ID:
 // Copyright:   (c) 2004 Vadim Zeitlin <vadim@wxwindows.org>
-// Licence:     wxWidgets licence
+// Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
@@ -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;
+}
+