Warning, file /include/catch2/internal/catch_windows_h_proxy.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef CATCH_WINDOWS_H_PROXY_HPP_INCLUDED
0009 #define CATCH_WINDOWS_H_PROXY_HPP_INCLUDED
0010
0011 #include <catch2/internal/catch_platform.hpp>
0012
0013 #if defined(CATCH_PLATFORM_WINDOWS)
0014
0015
0016
0017 #if !defined(NOMINMAX)
0018 # define NOMINMAX
0019 #endif
0020 #if !defined(WIN32_LEAN_AND_MEAN)
0021 # define WIN32_LEAN_AND_MEAN
0022 #endif
0023
0024 #include <windows.h>
0025
0026 #endif
0027
0028 #endif