mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 853350 - followup to make windows happy r=me
This commit is contained in:
parent
559e6dfd4a
commit
1462b292dc
@ -86,6 +86,11 @@ NS_IMETHODIMP DiskSpaceWatcher::GetIsDiskFull(bool* aIsDiskFull)
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
// GetFreeSpace is a macro on windows, and that messes up with the c++
|
||||
// compiler.
|
||||
#ifdef XP_WIN
|
||||
#undef GetFreeSpace
|
||||
#endif
|
||||
/* readonly attribute long freeSpace; */
|
||||
NS_IMETHODIMP DiskSpaceWatcher::GetFreeSpace(uint64_t* aFreeSpace)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user