forked from Mirror/Ryujinx
0bc8151c7e
* bcat ipc * fix hipc buffer flags * add buffer fixed size flag on generator
15 lines
438 B
C#
15 lines
438 B
C#
using LibHac.Bcat;
|
|
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Bcat
|
|
{
|
|
internal interface IDeliveryCacheFileService : IServiceObject
|
|
{
|
|
Result GetDigest(out Digest digest);
|
|
Result GetSize(out long size);
|
|
Result Open(DirectoryName directoryName, FileName fileName);
|
|
Result Read(long offset, out long bytesRead, Span<byte> data);
|
|
}
|
|
}
|