mutex_abi.cpp 930 B

12345678910111213141516171819202122232425262728293031323334
  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 mutex_abi.cpp
  9. * \author Andrey Semashev
  10. * \date 10.03.2018
  11. *
  12. * \brief This file contains ABI test for mutex.hpp
  13. */
  14. #include <boost/winapi/mutex.hpp>
  15. #include <windows.h>
  16. #include "abi_test_tools.hpp"
  17. int main()
  18. {
  19. BOOST_WINAPI_TEST_CONSTANT(MUTEX_ALL_ACCESS);
  20. BOOST_WINAPI_TEST_CONSTANT(MUTEX_MODIFY_STATE);
  21. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  22. BOOST_WINAPI_TEST_CONSTANT(CREATE_MUTEX_INITIAL_OWNER);
  23. #endif
  24. #if !defined(BOOST_NO_ANSI_APIS)
  25. BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(OpenMutexA);
  26. #endif
  27. BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(OpenMutexW);
  28. BOOST_WINAPI_TEST_FUNCTION_SIGNATURE(ReleaseMutex);
  29. return boost::report_errors();
  30. }