]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for very old w32api
authorMattia Barbon <mbarbon@cpan.org>
Tue, 4 Dec 2001 19:40:28 +0000 (19:40 +0000)
committerMattia Barbon <mbarbon@cpan.org>
Tue, 4 Dec 2001 19:40:28 +0000 (19:40 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12870 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/utils.cpp

index 453880612db140757b89f1301e823640b1d5f052..fcb1e515f697ae9e0db482278212403a82420844 100644 (file)
@@ -454,7 +454,9 @@ bool wxGetDiskSpace(const wxString& path, wxLongLong *pTotal, wxLongLong *pFree)
     if ( path.empty() )
         return FALSE;
 
-#if defined(__WIN32__) && !defined(__GNUWIN32__)
+// old w32api don't have ULARGE_INTEGER
+#if defined(__WIN32__) && \
+    (!defined(__GNUWIN32__) || wxCHECK_W32API_VERSION( 0, 3 ))
     // GetDiskFreeSpaceEx() is not available under original Win95, check for
     // it
     typedef BOOL (*GetDiskFreeSpaceEx_t)(LPCTSTR,