Files
jeanlemotan bbeaa887cd First
2024-07-02 18:13:47 +02:00

21 lines
553 B
C++

///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Lewis Baker
// Licenced under MIT license. See LICENSE.txt for details.
///////////////////////////////////////////////////////////////////////////////
#include <cppcoro/detail/win32.hpp>
#ifndef WIN32_LEAN_AND_MEAN
# define WIN32_LEAN_AND_MEAN
#endif
#include <Windows.h>
void cppcoro::detail::win32::safe_handle::close() noexcept
{
if (m_handle != nullptr && m_handle != INVALID_HANDLE_VALUE)
{
::CloseHandle(m_handle);
m_handle = nullptr;
}
}