You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
962 B
17 lines
962 B
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
// This file is automatically generated. Changes to this file may be overwritten.
|
|
|
|
namespace Epic.OnlineServices.TitleStorage
|
|
{
|
|
/// <summary>
|
|
/// Callback for when we have data ready to be read from the requested file. It is undefined how often this will be called during a single tick.
|
|
/// </summary>
|
|
/// <param name="data">Struct containing a chunk of data to read, as well as some metadata for the file being read</param>
|
|
/// <returns>
|
|
/// The result of the read operation. If this value is not <see cref="ReadResult.RrContinuereading" />, this callback will not be called again for the same request
|
|
/// </returns>
|
|
public delegate ReadResult OnReadFileDataCallback(ref ReadFileDataCallbackInfo data);
|
|
|
|
[System.Runtime.InteropServices.UnmanagedFunctionPointer(Config.LibraryCallingConvention)]
|
|
internal delegate ReadResult OnReadFileDataCallbackInternal(ref ReadFileDataCallbackInfoInternal data);
|
|
}
|