• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  *             Copyright Andrey Semashev 2018.
3  * Distributed under the Boost Software License, Version 1.0.
4  *    (See accompanying file LICENSE_1_0.txt or copy at
5  *          http://www.boost.org/LICENSE_1_0.txt)
6  */
7 /*!
8  * \file   stack_backtrace_abi.cpp
9  * \author Andrey Semashev
10  * \date   10.03.2018
11  *
12  * \brief  This file contains ABI test for stack_backtrace.hpp
13  */
14 
15 #include <boost/winapi/stack_backtrace.hpp>
16 #include <windows.h>
17 #include "abi_test_tools.hpp"
18 
main()19 int main()
20 {
21 // MinGW does not provide RtlCaptureStackBackTrace
22 #if !defined(BOOST_WINAPI_IS_MINGW)
23 // Note: RtlCaptureStackBackTrace is available in WinXP SP1 and later
24 #if (BOOST_USE_NTDDI_VERSION > BOOST_WINAPI_NTDDI_WINXP)
25 #if BOOST_WINAPI_PARTITION_APP_SYSTEM
26 
27     BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(RtlCaptureStackBackTrace);
28 
29 #endif // BOOST_WINAPI_PARTITION_APP_SYSTEM
30 #endif // (BOOST_USE_NTDDI_VERSION > BOOST_WINAPI_NTDDI_WINXP)
31 #endif // !defined(BOOST_WINAPI_IS_MINGW)
32 
33     return boost::report_errors();
34 }
35