This commit is contained in:
Emmanuel Hansen
2023-05-04 14:26:10 +00:00
committed by GitHub
parent 4d1579acbf
commit 4250732353
31 changed files with 592 additions and 418 deletions

View File

@@ -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);
}
}