1 /* 2 * Copyright Andrey Semashev 2020. 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 wait_on_address_abi.cpp 9 * \author Andrey Semashev 10 * \date 07.06.2020 11 * 12 * \brief This file contains ABI test for wait_on_address.hpp 13 */ 14 15 #include <boost/winapi/wait_on_address.hpp> 16 #include <windows.h> 17 #include "abi_test_tools.hpp" 18 main()19int main() 20 { 21 #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN8 && (BOOST_WINAPI_PARTITION_APP || BOOST_WINAPI_PARTITION_SYSTEM) 22 BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(WaitOnAddress); 23 BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(WakeByAddressSingle); 24 BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(WakeByAddressAll); 25 #endif 26 27 return boost::report_errors(); 28 } 29