mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 17:10:48 -07:00
bcat ipc (#4446)
This commit is contained in:
15
src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheFileService.cs
Normal file
15
src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheFileService.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user