aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs')
-rw-r--r--src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs b/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs
new file mode 100644
index 00000000..07a796f8
--- /dev/null
+++ b/src/Ryujinx.Horizon/Sdk/Bcat/IDeliveryCacheProgressService.cs
@@ -0,0 +1,12 @@
+using Ryujinx.Horizon.Bcat.Ipc.Types;
+using Ryujinx.Horizon.Common;
+using Ryujinx.Horizon.Sdk.Sf;
+
+namespace Ryujinx.Horizon.Sdk.Bcat
+{
+ internal interface IDeliveryCacheProgressService : IServiceObject
+ {
+ Result GetEvent(out int handle);
+ Result GetImpl(out DeliveryCacheProgressImpl deliveryCacheProgressImpl);
+ }
+}