File indexing completed on 2025-01-18 09:53:47
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_WINAPI_GET_CURRENT_THREAD_ID_HPP_INCLUDED_
0010 #define BOOST_WINAPI_GET_CURRENT_THREAD_ID_HPP_INCLUDED_
0011
0012 #include <boost/winapi/basic_types.hpp>
0013 #include <boost/winapi/detail/header.hpp>
0014
0015 #ifdef BOOST_HAS_PRAGMA_ONCE
0016 #pragma once
0017 #endif
0018
0019
0020 #if !defined( BOOST_USE_WINDOWS_H ) && !defined( UNDER_CE )
0021 extern "C" {
0022 BOOST_WINAPI_IMPORT boost::winapi::DWORD_ BOOST_WINAPI_WINAPI_CC GetCurrentThreadId(BOOST_WINAPI_DETAIL_VOID);
0023 }
0024 #endif
0025
0026 namespace boost {
0027 namespace winapi {
0028 using ::GetCurrentThreadId;
0029 }
0030 }
0031
0032 #include <boost/winapi/detail/footer.hpp>
0033
0034 #endif