mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-07 08:57:13 +00:00
26 lines
712 B
C#
26 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;
|
|
}
|
|
}
|
|
}
|