arg_router  1.4.0
C++ command line argument parsing and routing
win_api.hpp
Go to the documentation of this file.
1 // Copyright (C) 2023 by Camden Mannett.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE or copy at https://www.boost.org/LICENSE_1_0.txt)
4 
5 #pragma once
6 
14 #ifdef _WIN32
15 # if !defined(AR_NO_NOMINMAX) && !defined(NOMINMAX)
16 # define NOMINMAX
17 # endif
18 
19 # if !defined(AR_NO_WIN32_LEAN_AND_MEAN) && !defined(WIN32_LEAN_AND_MEAN)
20 # define WIN32_LEAN_AND_MEAN
21 # endif
22 
23 # include "windows.h"
24 #endif