mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-08-01 22:07:10 +02:00
14 lines
400 B
C#
14 lines
400 B
C#
using LibHac.Bcat;
|
|
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Bcat
|
|
{
|
|
internal interface IDeliveryCacheDirectoryService : IServiceObject
|
|
{
|
|
Result GetCount(out int count);
|
|
Result Open(DirectoryName directoryName);
|
|
Result Read(out int entriesRead, Span<DeliveryCacheDirectoryEntry> entriesBuffer);
|
|
}
|
|
}
|