mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-16 11:42:28 +00:00
12 lines
269 B
C++
12 lines
269 B
C++
#ifndef BC_FILE_SYSTEM_WIN_SUPPORT_HPP
|
|
#define BC_FILE_SYSTEM_WIN_SUPPORT_HPP
|
|
|
|
// Lowercase windows.h macros fight with BlizzardCore file function names
|
|
// Get out of here
|
|
#if defined(WHOA_SYSTEM_WIN)
|
|
#if defined(GetFreeSpace)
|
|
#undef GetFreeSpace
|
|
#endif
|
|
#endif
|
|
|
|
#endif
|