]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
check for LVS_OWNERDATA availability at compile and run-time
[wxWidgets.git] / src / common / filefn.cpp
index 781e18dc95795a550648f4ffa58bf1e0a7787dee..92a79464185b96227d29357dc61d51f755731022 100644 (file)
@@ -1129,7 +1129,7 @@ bool wxMkdir(const wxString& dir, int perm)
 
     // assume mkdir() has 2 args on non Windows-OS/2 platforms and on Windows too
     // for the GNU compiler
-#if (!(defined(__WXMSW__) || defined(__WXPM__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__)
+#if (!(defined(__WXMSW__) || defined(__WXPM__))) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) || defined(__WXMICROWIN__)
     if ( mkdir(wxFNCONV(dirname), perm) != 0 )
 #elif defined(__WXPM__)
     if (::DosCreateDir((PSZ)dirname, NULL) != 0) // enhance for EAB's??