mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-25 23:40:18 +00:00
25 lines
712 B
C#
25 lines
712 B
C#
using Ryujinx.Horizon.Bcat.Types;
|
|
using Ryujinx.Horizon.Common;
|
|
using Ryujinx.Horizon.Sdk.Bcat;
|
|
using Ryujinx.Horizon.Sdk.Sf;
|
|
|
|
namespace Ryujinx.Horizon.Bcat.Ipc
|
|
{
|
|
partial class BcatService : IBcatService
|
|
{
|
|
private readonly BcatServicePermissionLevel _permissionLevel;
|
|
|
|
public BcatService(BcatServicePermissionLevel permissionLevel)
|
|
{
|
|
_permissionLevel = permissionLevel;
|
|
}
|
|
|
|
[CmifCommand(10100)]
|
|
public Result RequestSyncDeliveryCache(out IDeliveryCacheProgressService deliveryCacheProgressService)
|
|
{
|
|
deliveryCacheProgressService = new DeliveryCacheProgressService();
|
|
|
|
return Result.Success;
|
|
}
|
|
}
|
|
}
|