2015-12-06 05:34:37 +00:00
|
|
|
/*=============================================================================
|
2016-02-25 09:48:28 +00:00
|
|
|
Copyright (c) 2011-2016 Bolero MURAKAMI
|
2015-12-06 05:34:37 +00:00
|
|
|
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_PHONE_HPP
|
|
|
|
#define SPROUT_PREDEF_PLATFORM_WINDOWS_PHONE_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/predef/os/windows.hpp>
|
|
|
|
|
|
|
|
#define SPROUT_PLAT_WINDOWS_PHONE 0
|
|
|
|
|
|
|
|
#if SPROUT_OS_WINDOWS && defined(WINAPI_FAMILY) && WINAPI_FAMILY == WINAPI_FAMILY_PHONE_APP
|
|
|
|
# undef SPROUT_PLAT_WINDOWS_PHONE
|
|
|
|
# define SPROUT_PLAT_WINDOWS_PHONE 1
|
|
|
|
#endif
|
2016-04-05 02:57:06 +00:00
|
|
|
|
2015-12-06 05:34:37 +00:00
|
|
|
#if SPROUT_PLAT_WINDOWS_PHONE
|
|
|
|
# define SPROUT_PLAT_WINDOWS_PHONE_AVALIABLE
|
|
|
|
# include <sprout/predef/detail/platform_detected.hpp>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SPROUT_PLAT_WINDOWS_PHONE_NAME "Windows Phone"
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_PREDEF_PLATFORM_WINDOWS_PHONE_HPP
|