spdlog/include/spdlog/details/windows_include.h

12 lines
187 B
C
Raw Normal View History

#pragma once
#ifndef NOMINMAX
2021-07-19 05:50:51 +08:00
# define NOMINMAX // prevent windows redefining min/max
#endif
#ifndef WIN32_LEAN_AND_MEAN
2021-07-19 05:50:51 +08:00
# define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>