First
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
// Copyright (c) Lewis Baker
|
||||
// Licenced under MIT license. See LICENSE.txt for details.
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <cppcoro\read_only_file.hpp>
|
||||
|
||||
#if CPPCORO_OS_WINNT
|
||||
# ifndef WIN32_LEAN_AND_MEAN
|
||||
# define WIN32_LEAN_AND_MEAN
|
||||
# endif
|
||||
# include <Windows.h>
|
||||
|
||||
cppcoro::read_only_file cppcoro::read_only_file::open(
|
||||
io_service& ioService,
|
||||
const cppcoro::filesystem::path& path,
|
||||
file_share_mode shareMode,
|
||||
file_buffering_mode bufferingMode)
|
||||
{
|
||||
return read_only_file(file::open(
|
||||
GENERIC_READ,
|
||||
ioService,
|
||||
path,
|
||||
file_open_mode::open_existing,
|
||||
shareMode,
|
||||
bufferingMode));
|
||||
}
|
||||
|
||||
cppcoro::read_only_file::read_only_file(
|
||||
detail::win32::safe_handle&& fileHandle) noexcept
|
||||
: file(std::move(fileHandle))
|
||||
, readable_file(detail::win32::safe_handle{})
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user