// Copyright Epic Games, Inc. All Rights Reserved.
// This file is automatically generated. Changes to this file may be overwritten.
namespace Epic.OnlineServices.TitleStorage
{
///
/// 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.
///
/// Struct containing a chunk of data to read, as well as some metadata for the file being read
///
/// The result of the read operation. If this value is not , this callback will not be called again for the same request
///
public delegate ReadResult OnReadFileDataCallback(ReadFileDataCallbackInfo data);
[System.Runtime.InteropServices.UnmanagedFunctionPointer(Config.LibraryCallingConvention)]
internal delegate ReadResult OnReadFileDataCallbackInternal(System.IntPtr data);
}