]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/winapi/get_current_process_id.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / winapi / get_current_process_id.hpp
CommitLineData
b32b8144
FG
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 )
19extern "C" {
92f5a8d4 20BOOST_SYMBOL_IMPORT boost::winapi::DWORD_ BOOST_WINAPI_WINAPI_CC GetCurrentProcessId(BOOST_WINAPI_DETAIL_VOID);
b32b8144
FG
21}
22#endif
23
24namespace boost {
25namespace winapi {
26using ::GetCurrentProcessId;
27}
28}
29
30#endif // BOOST_WINAPI_GET_CURRENT_PROCESS_ID_HPP_INCLUDED_