AuroraRuntime/Include/Aurora/IO/IOPipeRequestAIO.hpp
Reece Wilson 07fd9f19f8 [+] NewProtocolStackFromPipe([...], bool bAutoTick)
[+] IOPipeRequestAIO::uStartOffset
[*] Fix Zstd frames being finicky
[*] Fix compression interceptor invalid weak reference to pipe that
[*] Fix WinFileStream::GetOffset using wrong enumeration
[*] Null ByteBuffer flags on init bc not all operators and constructors account for them
[will prevent bugs in the future]
2022-11-07 13:34:28 +00:00

21 lines
408 B
C++

/***
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: IOPipeRequestAIO.hpp
Date: 2022-6-6
Author: Reece
***/
#pragma once
namespace Aurora::IO
{
struct IAsyncTransaction;
struct IOPipeRequestAIO : IOPipeRequest
{
AuSPtr<IAsyncTransaction> pAsyncTransaction;
AuUInt32 uStartOffset {};
IOPipeCallback output;
};
}