summaryrefslogtreecommitdiff
path: root/boost/detail/winapi/GetThreadTimes.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/detail/winapi/GetThreadTimes.hpp')
-rw-r--r--boost/detail/winapi/GetThreadTimes.hpp40
1 files changed, 5 insertions, 35 deletions
diff --git a/boost/detail/winapi/GetThreadTimes.hpp b/boost/detail/winapi/GetThreadTimes.hpp
index 2e1eb8f45c..d69c410e61 100644
--- a/boost/detail/winapi/GetThreadTimes.hpp
+++ b/boost/detail/winapi/GetThreadTimes.hpp
@@ -10,46 +10,16 @@
#ifndef BOOST_DETAIL_WINAPI_GETTHREADTIMES_HPP
#define BOOST_DETAIL_WINAPI_GETTHREADTIMES_HPP
-#include <boost/detail/winapi/basic_types.hpp>
-#include <boost/detail/winapi/time.hpp>
+#include <boost/detail/winapi/get_thread_times.hpp>
#ifdef BOOST_HAS_PRAGMA_ONCE
#pragma once
#endif
-#if !defined( BOOST_USE_WINDOWS_H )
-extern "C" {
-BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
-GetThreadTimes(
- boost::detail::winapi::HANDLE_ hThread,
- ::_FILETIME* lpCreationTime,
- ::_FILETIME* lpExitTime,
- ::_FILETIME* lpKernelTime,
- ::_FILETIME* lpUserTime);
-}
+#if defined(__GNUC__)
+#pragma message "This header is deprecated, use boost/detail/winapi/get_thread_times.hpp instead."
+#elif defined(_MSC_VER)
+#pragma message("This header is deprecated, use boost/detail/winapi/get_thread_times.hpp instead.")
#endif
-namespace boost {
-namespace detail {
-namespace winapi {
-
-BOOST_FORCEINLINE BOOL_ GetThreadTimes(
- HANDLE_ hThread,
- LPFILETIME_ lpCreationTime,
- LPFILETIME_ lpExitTime,
- LPFILETIME_ lpKernelTime,
- LPFILETIME_ lpUserTime)
-{
- return ::GetThreadTimes(
- hThread,
- reinterpret_cast< ::_FILETIME* >(lpCreationTime),
- reinterpret_cast< ::_FILETIME* >(lpExitTime),
- reinterpret_cast< ::_FILETIME* >(lpKernelTime),
- reinterpret_cast< ::_FILETIME* >(lpUserTime));
-}
-
-}
-}
-}
-
#endif // BOOST_DETAIL_WINAPI_GETTHREADTIMES_HPP