]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/filefn.h
Extend history api using the ie backend to include loading history items, and getting...
[wxWidgets.git] / include / wx / filefn.h
index fac3cff5ee2de81bda5c66b7b50b9e5178fb7d96..79d20a0d1b8a357f026fa4ffacb9effb46efdedf 100644 (file)
@@ -578,7 +578,8 @@ inline int wxLstat(const wxString& path, wxStructStat *buf)
     { return wxCRT_Lstat(path.fn_str(), buf); }
 inline int wxRmDir(const wxString& path)
     { return wxCRT_RmDir(path.fn_str()); }
-#if defined(__WINDOWS__) || (defined(__OS2__) && defined(__WATCOMC__))
+#if (defined(__WINDOWS__) && !defined(__CYGWIN__)) \
+        || (defined(__OS2__) && defined(__WATCOMC__))
 inline int wxMkDir(const wxString& path, mode_t WXUNUSED(mode) = 0)
     { return wxCRT_MkDir(path.fn_str()); }
 #else