init_once.hpp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. // init_once.hpp --------------------------------------------------------------//
  2. // Copyright 2010 Vicente J. Botet Escriba
  3. // Copyright 2015 Andrey Semashev
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // See http://www.boost.org/LICENSE_1_0.txt
  6. #ifndef BOOST_DETAIL_WINAPI_INIT_ONCE_HPP
  7. #define BOOST_DETAIL_WINAPI_INIT_ONCE_HPP
  8. #include <boost/detail/winapi/config.hpp>
  9. #ifdef BOOST_HAS_PRAGMA_ONCE
  10. #pragma once
  11. #endif
  12. #if BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  13. #include <boost/detail/winapi/basic_types.hpp>
  14. #if !defined( BOOST_USE_WINDOWS_H )
  15. extern "C" {
  16. #if defined( BOOST_WINAPI_IS_MINGW_W64 )
  17. struct _RTL_RUN_ONCE;
  18. #else
  19. union _RTL_RUN_ONCE;
  20. #endif
  21. typedef boost::detail::winapi::BOOL_
  22. (WINAPI *PINIT_ONCE_FN) (
  23. ::_RTL_RUN_ONCE* InitOnce,
  24. boost::detail::winapi::PVOID_ Parameter,
  25. boost::detail::winapi::PVOID_ *Context);
  26. BOOST_SYMBOL_IMPORT boost::detail::winapi::VOID_ WINAPI
  27. InitOnceInitialize(::_RTL_RUN_ONCE* InitOnce);
  28. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  29. InitOnceExecuteOnce(
  30. ::_RTL_RUN_ONCE* InitOnce,
  31. ::PINIT_ONCE_FN InitFn,
  32. boost::detail::winapi::PVOID_ Parameter,
  33. boost::detail::winapi::LPVOID_ *Context);
  34. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  35. InitOnceBeginInitialize(
  36. ::_RTL_RUN_ONCE* lpInitOnce,
  37. boost::detail::winapi::DWORD_ dwFlags,
  38. boost::detail::winapi::PBOOL_ fPending,
  39. boost::detail::winapi::LPVOID_ *lpContext);
  40. BOOST_SYMBOL_IMPORT boost::detail::winapi::BOOL_ WINAPI
  41. InitOnceComplete(
  42. ::_RTL_RUN_ONCE* lpInitOnce,
  43. boost::detail::winapi::DWORD_ dwFlags,
  44. boost::detail::winapi::LPVOID_ lpContext);
  45. }
  46. #endif
  47. namespace boost {
  48. namespace detail {
  49. namespace winapi {
  50. typedef union BOOST_DETAIL_WINAPI_MAY_ALIAS _RTL_RUN_ONCE {
  51. PVOID_ Ptr;
  52. } INIT_ONCE_, *PINIT_ONCE_, *LPINIT_ONCE_;
  53. extern "C" {
  54. typedef BOOL_ (WINAPI *PINIT_ONCE_FN_) (PINIT_ONCE_ lpInitOnce, PVOID_ Parameter, PVOID_ *Context);
  55. }
  56. BOOST_FORCEINLINE VOID_ InitOnceInitialize(PINIT_ONCE_ lpInitOnce)
  57. {
  58. ::InitOnceInitialize(reinterpret_cast< ::_RTL_RUN_ONCE* >(lpInitOnce));
  59. }
  60. BOOST_FORCEINLINE BOOL_ InitOnceExecuteOnce(PINIT_ONCE_ lpInitOnce, PINIT_ONCE_FN_ InitFn, PVOID_ Parameter, LPVOID_ *Context)
  61. {
  62. return ::InitOnceExecuteOnce(reinterpret_cast< ::_RTL_RUN_ONCE* >(lpInitOnce), reinterpret_cast< ::PINIT_ONCE_FN >(InitFn), Parameter, Context);
  63. }
  64. BOOST_FORCEINLINE BOOL_ InitOnceBeginInitialize(PINIT_ONCE_ lpInitOnce, DWORD_ dwFlags, PBOOL_ fPending, LPVOID_ *lpContext)
  65. {
  66. return ::InitOnceBeginInitialize(reinterpret_cast< ::_RTL_RUN_ONCE* >(lpInitOnce), dwFlags, fPending, lpContext);
  67. }
  68. BOOST_FORCEINLINE BOOL_ InitOnceComplete(PINIT_ONCE_ lpInitOnce, DWORD_ dwFlags, LPVOID_ lpContext)
  69. {
  70. return ::InitOnceComplete(reinterpret_cast< ::_RTL_RUN_ONCE* >(lpInitOnce), dwFlags, lpContext);
  71. }
  72. #if defined( BOOST_USE_WINDOWS_H )
  73. #define BOOST_DETAIL_WINAPI_INIT_ONCE_STATIC_INIT INIT_ONCE_STATIC_INIT
  74. const DWORD_ INIT_ONCE_ASYNC_ = INIT_ONCE_ASYNC;
  75. const DWORD_ INIT_ONCE_CHECK_ONLY_ = INIT_ONCE_CHECK_ONLY;
  76. const DWORD_ INIT_ONCE_INIT_FAILED_ = INIT_ONCE_INIT_FAILED;
  77. const DWORD_ INIT_ONCE_CTX_RESERVED_BITS_ = INIT_ONCE_CTX_RESERVED_BITS;
  78. #else // defined( BOOST_USE_WINDOWS_H )
  79. #define BOOST_DETAIL_WINAPI_INIT_ONCE_STATIC_INIT {0}
  80. const DWORD_ INIT_ONCE_ASYNC_ = 0x00000002UL;
  81. const DWORD_ INIT_ONCE_CHECK_ONLY_ = 0x00000001UL;
  82. const DWORD_ INIT_ONCE_INIT_FAILED_ = 0x00000004UL;
  83. const DWORD_ INIT_ONCE_CTX_RESERVED_BITS_ = 2;
  84. #endif // defined( BOOST_USE_WINDOWS_H )
  85. const DWORD_ init_once_async = INIT_ONCE_ASYNC_;
  86. const DWORD_ init_once_check_only = INIT_ONCE_CHECK_ONLY_;
  87. const DWORD_ init_once_init_failed = INIT_ONCE_INIT_FAILED_;
  88. const DWORD_ init_once_ctx_reserved_bits = INIT_ONCE_CTX_RESERVED_BITS_;
  89. }
  90. }
  91. }
  92. #endif // BOOST_USE_WINAPI_VERSION >= BOOST_WINAPI_VERSION_WIN6
  93. #endif // BOOST_DETAIL_WINAPI_INIT_ONCE_HPP