2022-06-21 04:49:36 +00:00
|
|
|
/***
|
|
|
|
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
|
|
|
|
{
|
2022-08-29 15:46:46 +00:00
|
|
|
AuSPtr<IAsyncTransaction> pAsyncTransaction;
|
2022-11-08 21:25:43 +00:00
|
|
|
AuUInt64 uStartOffset {};
|
2022-11-07 13:34:28 +00:00
|
|
|
|
2022-06-21 04:49:36 +00:00
|
|
|
IOPipeCallback output;
|
|
|
|
};
|
|
|
|
}
|