]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/winapi/get_current_process.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / boost / winapi / get_current_process.hpp
CommitLineData
b32b8144
FG
1/*
2 * Copyright 2010 Vicente J. Botet Escriba
3 * Copyright 2015 Andrey Semashev
4 *
5 * Distributed under the Boost Software License, Version 1.0.
6 * See http://www.boost.org/LICENSE_1_0.txt
7 */
8
9#ifndef BOOST_WINAPI_GET_CURRENT_PROCESS_HPP_INCLUDED_
10#define BOOST_WINAPI_GET_CURRENT_PROCESS_HPP_INCLUDED_
11
12#include <boost/winapi/basic_types.hpp>
20effc67 13#include <boost/winapi/detail/header.hpp>
b32b8144
FG
14
15#ifdef BOOST_HAS_PRAGMA_ONCE
16#pragma once
17#endif
18
19// Windows CE define GetCurrentProcess as an inline function in kfuncs.h
20#if !defined( BOOST_USE_WINDOWS_H ) && !defined( UNDER_CE )
21extern "C" {
20effc67 22BOOST_WINAPI_IMPORT boost::winapi::HANDLE_ BOOST_WINAPI_WINAPI_CC GetCurrentProcess(BOOST_WINAPI_DETAIL_VOID);
b32b8144
FG
23}
24#endif
25
26namespace boost {
27namespace winapi {
28using ::GetCurrentProcess;
29}
30}
31
20effc67
TL
32#include <boost/winapi/detail/footer.hpp>
33
b32b8144 34#endif // BOOST_WINAPI_GET_CURRENT_PROCESS_HPP_INCLUDED_