/*============================================================================= Copyright (c) 2011-2016 Bolero MURAKAMI https://github.com/bolero-MURAKAMI/Sprout Distributed under the sprout Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.sprout.org/LICENSE_1_0.txt) =============================================================================*/ #ifndef SPROUT_PREDEF_PLATFORM_WINDOWS_STORE_HPP #define SPROUT_PREDEF_PLATFORM_WINDOWS_STORE_HPP #include #include #define SPROUT_PLAT_WINDOWS_STORE 0 #if SPROUT_OS_WINDOWS && defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_APP # undef SPROUT_PLAT_WINDOWS_STORE # define SPROUT_PLAT_WINDOWS_STORE 1 #endif #if SPROUT_PLAT_WINDOWS_STORE # define SPROUT_PLAT_WINDOWS_STORE_AVALIABLE # include #endif #define SPROUT_PLAT_WINDOWS_STORE_NAME "Windows Store" #endif // #ifndef SPROUT_PREDEF_PLATFORM_WINDOWS_STORE_HPP