]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/winapi/get_current_process_id.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / winapi / get_current_process_id.hpp
1 /*
2 * Copyright 2010 Vicente J. Botet Escriba
3 *
4 * Distributed under the Boost Software License, Version 1.0.
5 * See http://www.boost.org/LICENSE_1_0.txt
6 */
7
8 #ifndef BOOST_WINAPI_GET_CURRENT_PROCESS_ID_HPP_INCLUDED_
9 #define BOOST_WINAPI_GET_CURRENT_PROCESS_ID_HPP_INCLUDED_
10
11 #include <boost/winapi/basic_types.hpp>
12
13 #ifdef BOOST_HAS_PRAGMA_ONCE
14 #pragma once
15 #endif
16
17 // Windows CE define GetCurrentProcessId as an inline function in kfuncs.h
18 #if !defined( BOOST_USE_WINDOWS_H ) && !defined( UNDER_CE )
19 extern "C" {
20 BOOST_SYMBOL_IMPORT boost::winapi::DWORD_ WINAPI GetCurrentProcessId(BOOST_WINAPI_DETAIL_VOID);
21 }
22 #endif
23
24 namespace boost {
25 namespace winapi {
26 using ::GetCurrentProcessId;
27 }
28 }
29
30 #endif // BOOST_WINAPI_GET_CURRENT_PROCESS_ID_HPP_INCLUDED_