2016-02-25 10:38:03 +00:00
|
|
|
#ifndef NALL_WINDOWS_GUARD_HPP
|
|
|
|
#define NALL_WINDOWS_GUARD_HPP
|
|
|
|
|
|
|
|
#define boolean WindowsBoolean
|
2016-02-28 11:42:52 +00:00
|
|
|
#define interface WindowsInterface
|
2016-02-25 10:38:03 +00:00
|
|
|
|
2018-08-21 03:17:12 +00:00
|
|
|
#undef UNICODE
|
|
|
|
#undef WINVER
|
|
|
|
#undef WIN32_LEAN_AND_LEAN
|
|
|
|
#undef _WIN32_WINNT
|
|
|
|
#undef _WIN32_IE
|
|
|
|
#undef __MSVCRT_VERSION__
|
|
|
|
#undef NOMINMAX
|
|
|
|
#undef PATH_MAX
|
|
|
|
|
|
|
|
#define UNICODE
|
|
|
|
#define WINVER 0x0601
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
|
|
#define _WIN32_WINNT WINVER
|
|
|
|
#define _WIN32_IE WINVER
|
|
|
|
#define __MSVCRT_VERSION__ WINVER
|
|
|
|
#define NOMINMAX
|
|
|
|
#define PATH_MAX 260
|
|
|
|
|
2016-02-25 10:38:03 +00:00
|
|
|
#else
|
|
|
|
#undef NALL_WINDOWS_GUARD_HPP
|
|
|
|
|
|
|
|
#undef boolean
|
|
|
|
#undef interface
|
|
|
|
|
|
|
|
#endif
|