1 | /* |
2 | Copyright (c) Microsoft Corporation 2014 |
3 | Distributed under the Boost Software License, Version 1.0. |
4 | (See accompanying file LICENSE_1_0.txt or copy at |
5 | http://www.boost.org/LICENSE_1_0.txt) |
6 | */ |
7 | |
8 | #ifndef BOOST_PREDEF_PLAT_WINDOWS_RUNTIME_H |
9 | #define BOOST_PREDEF_PLAT_WINDOWS_RUNTIME_H |
10 | |
11 | #include <boost/predef/version_number.h> |
12 | #include <boost/predef/make.h> |
13 | #include <boost/predef/os/windows.h> |
14 | |
15 | /*` |
16 | [heading `BOOST_PLAT_WINDOWS_RUNTIME`] |
17 | |
18 | [table |
19 | [[__predef_symbol__] [__predef_version__]] |
20 | |
21 | [[`WINAPI_FAMILY == WINAPI_FAMILY_APP`] [__predef_detection__]] |
22 | [[`WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP`] [__predef_detection__]] |
23 | ] |
24 | */ |
25 | |
26 | #define BOOST_PLAT_WINDOWS_RUNTIME BOOST_VERSION_NUMBER_NOT_AVAILABLE |
27 | |
28 | #if BOOST_OS_WINDOWS && defined(WINAPI_FAMILY) && \ |
29 | ( WINAPI_FAMILY == WINAPI_FAMILY_APP || WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP ) |
30 | # undef BOOST_PLAT_WINDOWS_RUNTIME |
31 | # define BOOST_PLAT_WINDOWS_RUNTIME BOOST_VERSION_NUMBER_AVAILABLE |
32 | #endif |
33 | |
34 | #if BOOST_PLAT_WINDOWS_RUNTIME |
35 | # define BOOST_PLAT_WINDOWS_RUNTIME_AVALIABLE |
36 | # include <boost/predef/detail/platform_detected.h> |
37 | #endif |
38 | |
39 | #define BOOST_PLAT_WINDOWS_RUNTIME_NAME "Windows Runtime" |
40 | |
41 | #include <boost/predef/detail/test.h> |
42 | BOOST_PREDEF_DECLARE_TEST(BOOST_PLAT_WINDOWS_RUNTIME,BOOST_PLAT_WINDOWS_RUNTIME_NAME) |
43 | |
44 | #endif |
45 | |