1/*
2Copyright (c) Microsoft Corporation 2014
3Copyright Rene Rivera 2015
4Distributed under the Boost Software License, Version 1.0.
5(See accompanying file LICENSE_1_0.txt or copy at
6http://www.boost.org/LICENSE_1_0.txt)
7*/
8
9#ifndef BOOST_PREDEF_PLAT_WINDOWS_DESKTOP_H
10#define BOOST_PREDEF_PLAT_WINDOWS_DESKTOP_H
11
12#include <boost/predef/make.h>
13#include <boost/predef/os/windows.h>
14#include <boost/predef/platform/windows_uwp.h>
15#include <boost/predef/version_number.h>
16
17/*`
18[heading `BOOST_PLAT_WINDOWS_DESKTOP`]
19
20[@https://docs.microsoft.com/en-us/windows/uwp/get-started/universal-application-platform-guide UWP]
21for Windows Desktop development. Also available if the Platform SDK is too
22old to support UWP.
23
24[table
25 [[__predef_symbol__] [__predef_version__]]
26
27 [[`WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP`] [__predef_detection__]]
28 [[`!BOOST_PLAT_WINDOWS_UWP`] [__predef_detection__]]
29 ]
30 */
31
32#define BOOST_PLAT_WINDOWS_DESKTOP BOOST_VERSION_NUMBER_NOT_AVAILABLE
33
34#if BOOST_OS_WINDOWS && \
35 ((defined(WINAPI_FAMILY_DESKTOP_APP) && WINAPI_FAMILY == WINAPI_FAMILY_DESKTOP_APP) || \
36 !BOOST_PLAT_WINDOWS_UWP)
37# undef BOOST_PLAT_WINDOWS_DESKTOP
38# define BOOST_PLAT_WINDOWS_DESKTOP BOOST_VERSION_NUMBER_AVAILABLE
39#endif
40
41#if BOOST_PLAT_WINDOWS_DESKTOP
42# define BOOST_PLAT_WINDOWS_DESKTOP_AVAILABLE
43# include <boost/predef/detail/platform_detected.h>
44#endif
45
46#define BOOST_PLAT_WINDOWS_DESKTOP_NAME "Windows Desktop"
47
48#endif
49
50#include <boost/predef/detail/test.h>
51BOOST_PREDEF_DECLARE_TEST(BOOST_PLAT_WINDOWS_DESKTOP,BOOST_PLAT_WINDOWS_DESKTOP_NAME)
52