AuroraRuntime/Include/Aurora/IO/FS/Async.hpp

17 lines
491 B
C++
Raw Normal View History

2021-09-06 10:58:08 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: AFIO.hpp
Date: 2021-8-21
Author: Reece
***/
#pragma once
namespace Aurora::IO::FS
2021-09-06 10:58:08 +00:00
{
2022-08-20 06:53:48 +00:00
AUKN_SHARED_API(OpenAsync, IAsyncFileStream,
const AuString &path,
EFileOpenMode openMode,
bool bDirectIO = false, // true disables buffering under Win32
EFileAdvisoryLockLevel lock = EFileAdvisoryLockLevel::eNoSafety);
2021-09-06 10:58:08 +00:00
}