15 lines
345 B
C++
15 lines
345 B
C++
|
/***
|
||
|
Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
||
|
|
||
|
File: IAsyncFinishedSubscriber.hpp
|
||
|
Date: 2022-2-14
|
||
|
Author: Reece
|
||
|
***/
|
||
|
#pragma once
|
||
|
|
||
|
namespace Aurora::IO::FS
|
||
|
{
|
||
|
AUKN_INTERFACE(IAsyncFinishedSubscriber,
|
||
|
AUI_METHOD(void, OnAsyncFileOpFinished, (AuUInt64, offset, AuUInt32, length))
|
||
|
);
|
||
|
}
|