Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:48:06

0001 /*
0002 Copyright (c) Microsoft Corporation 2014
0003 Copyright Rene Rivera 2015
0004 Distributed under the Boost Software License, Version 1.0.
0005 (See accompanying file LICENSE_1_0.txt or copy at
0006 http://www.boost.org/LICENSE_1_0.txt)
0007 */
0008 
0009 #ifndef BOOST_PREDEF_PLAT_WINDOWS_STORE_H
0010 #define BOOST_PREDEF_PLAT_WINDOWS_STORE_H
0011 
0012 #include <boost/predef/make.h>
0013 #include <boost/predef/os/windows.h>
0014 #include <boost/predef/platform/windows_uwp.h>
0015 #include <boost/predef/version_number.h>
0016 
0017 /* tag::reference[]
0018 = `BOOST_PLAT_WINDOWS_STORE`
0019 
0020 https://docs.microsoft.com/en-us/windows/uwp/get-started/universal-application-platform-guide[UWP]
0021 for Windows Store development.
0022 
0023 [options="header"]
0024 |===
0025 | {predef_symbol} | {predef_version}
0026 
0027 | `WINAPI_FAMILY == WINAPI_FAMILY_PC_APP` | {predef_detection}
0028 | `WINAPI_FAMILY == WINAPI_FAMILY_APP` (deprecated) | {predef_detection}
0029 |===
0030 */ // end::reference[]
0031 
0032 #define BOOST_PLAT_WINDOWS_STORE BOOST_VERSION_NUMBER_NOT_AVAILABLE
0033 
0034 #if BOOST_OS_WINDOWS && \
0035     ((defined(WINAPI_FAMILY_PC_APP) && WINAPI_FAMILY == WINAPI_FAMILY_PC_APP) || \
0036      (defined(WINAPI_FAMILY_APP)    && WINAPI_FAMILY == WINAPI_FAMILY_APP))
0037 #   undef BOOST_PLAT_WINDOWS_STORE
0038 #   define BOOST_PLAT_WINDOWS_STORE BOOST_VERSION_NUMBER_AVAILABLE
0039 #endif
0040  
0041 #if BOOST_PLAT_WINDOWS_STORE
0042 #   define BOOST_PLAT_WINDOWS_STORE_AVAILABLE
0043 #   include <boost/predef/detail/platform_detected.h>
0044 #endif
0045 
0046 #define BOOST_PLAT_WINDOWS_STORE_NAME "Windows Store"
0047 
0048 #endif
0049 
0050 #include <boost/predef/detail/test.h>
0051 BOOST_PREDEF_DECLARE_TEST(BOOST_PLAT_WINDOWS_STORE,BOOST_PLAT_WINDOWS_STORE_NAME)