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