14 lines
194 B
C++
14 lines
194 B
C++
#ifndef UTILITY_WINDOWS_H
|
|
#define UTILITY_WINDOWS_H
|
|
|
|
#ifdef WIN32
|
|
|
|
namespace utility
|
|
{
|
|
unsigned long getLargestByteSizeOfAllocatableMemory();
|
|
}
|
|
|
|
#endif // WIN32
|
|
|
|
#endif // UTILITY_WINDOWS_H
|