aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs')
-rw-r--r--src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs b/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs
new file mode 100644
index 00000000..23a740c3
--- /dev/null
+++ b/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheDirectoryService.cs
@@ -0,0 +1,14 @@
+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);
+ }
+}