First
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user