summaryrefslogtreecommitdiff
path: root/boost/asio/detail/thread.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/asio/detail/thread.hpp')
-rw-r--r--boost/asio/detail/thread.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/boost/asio/detail/thread.hpp b/boost/asio/detail/thread.hpp
index adc5a55708..1076e6452c 100644
--- a/boost/asio/detail/thread.hpp
+++ b/boost/asio/detail/thread.hpp
@@ -20,8 +20,8 @@
#if !defined(BOOST_ASIO_HAS_THREADS)
# include <boost/asio/detail/null_thread.hpp>
#elif defined(BOOST_ASIO_WINDOWS)
-# if defined(UNDER_CE)
-# include <boost/asio/detail/wince_thread.hpp>
+# if defined(BOOST_ASIO_WINDOWS_APP) || defined(UNDER_CE)
+# include <boost/asio/detail/winapi_thread.hpp>
# else
# include <boost/asio/detail/win_thread.hpp>
# endif
@@ -40,8 +40,8 @@ namespace detail {
#if !defined(BOOST_ASIO_HAS_THREADS)
typedef null_thread thread;
#elif defined(BOOST_ASIO_WINDOWS)
-# if defined(UNDER_CE)
-typedef wince_thread thread;
+# if defined(BOOST_ASIO_WINDOWS_APP) || defined(UNDER_CE)
+typedef winapi_thread thread;
# else
typedef win_thread thread;
# endif