IDeliveryCacheProgressService.cs
1 using Ryujinx.Horizon.Bcat.Ipc.Types; 2 using Ryujinx.Horizon.Common; 3 using Ryujinx.Horizon.Sdk.Sf; 4 5 namespace Ryujinx.Horizon.Sdk.Bcat 6 { 7 internal interface IDeliveryCacheProgressService : IServiceObject 8 { 9 Result GetEvent(out int handle); 10 Result GetImpl(out DeliveryCacheProgressImpl deliveryCacheProgressImpl); 11 } 12 }