]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/winapi/stack_backtrace.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / winapi / stack_backtrace.hpp
1 /*
2 * Copyright 2017 Andrey Semashev
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_STACK_BACKTRACE_HPP_INCLUDED_
9 #define BOOST_WINAPI_STACK_BACKTRACE_HPP_INCLUDED_
10
11 #include <boost/winapi/basic_types.hpp>
12 #include <boost/winapi/config.hpp>
13
14 #ifdef BOOST_HAS_PRAGMA_ONCE
15 #pragma once
16 #endif
17
18 // MinGW does not provide RtlCaptureStackBackTrace
19 #if !defined( BOOST_WINAPI_IS_MINGW )
20
21 // Note: RtlCaptureStackBackTrace is available in WinXP SP1 and later
22 #if (BOOST_USE_NTDDI_VERSION > BOOST_WINAPI_NTDDI_WINXP)
23
24 #if BOOST_WINAPI_PARTITION_APP_SYSTEM
25
26 // Windows SDK shipped with MSVC 7.1 and 8 does not declare RtlCaptureStackBackTrace in headers but allows to link with it
27 #if !defined( BOOST_USE_WINDOWS_H ) || (defined(_MSC_VER) && (_MSC_VER+0) < 1500)
28 extern "C" {
29
30 BOOST_SYMBOL_IMPORT
31 boost::winapi::WORD_
32 NTAPI
33 RtlCaptureStackBackTrace(
34 boost::winapi::DWORD_ FramesToSkip,
35 boost::winapi::DWORD_ FramesToCapture,
36 boost::winapi::PVOID_* BackTrace,
37 boost::winapi::PDWORD_ BackTraceHash
38 );
39
40 } // extern "C"
41 #endif
42
43 namespace boost {
44 namespace winapi {
45
46 using ::RtlCaptureStackBackTrace;
47
48 }
49 }
50
51 #endif // BOOST_WINAPI_PARTITION_APP_SYSTEM
52 #endif // (NTDDI_VERSION > 0x05010000)
53 #endif // !defined( BOOST_WINAPI_IS_MINGW )
54 #endif // BOOST_WINAPI_STACK_BACKTRACE_HPP_INCLUDED_