- Attempt to support FreeDiskSpace() on Windows platform

* Totally untested, not even sure it compiles but if not it should be easy to fix
This commit is contained in:
Christophe Dumez 2009-08-17 14:53:41 +00:00
parent 6fcf25af52
commit 706362333d

View file

@ -44,6 +44,8 @@
#ifndef Q_WS_WIN
#include <sys/vfs.h>
#else
#include <winbase.h>
#endif
#include <libtorrent/torrent_info.hpp>
@ -110,7 +112,29 @@ public:
return -1;
}
#else
typedef BOOL (WINAPI *GetDiskFreeSpaceEx_t)(LPCTSTR,
PULARGE_INTEGER,
PULARGE_INTEGER,
PULARGE_INTEGER);
GetDiskFreeSpaceEx_t
pGetDiskFreeSpaceEx = (GetDiskFreeSpaceEx_t)::GetProcAddress
(
::GetModuleHandle(_T("kernel32.dll")),
"GetDiskFreeSpaceExW"
);
if ( pGetDiskFreeSpaceEx )
{
ULARGE_INTEGER bytesFree, bytesTotal;
unsigned long long *ret;
if (pGetDiskFreeSpaceEx((LPCTSTR)path.ucs2(), &bytesFree, &bytesTotal, NULL)) {
tmp = (unsigned long long*)&bytesFree
return ret;
} else {
return -1;
}
} else {
return -1;
}
#endif
}