aboutsummaryrefslogblamecommitdiff
path: root/src/Ryujinx.Horizon/Bcat/Ipc/ServiceCreator/BcatService.cs
blob: 9ea2dc11c2de142bb589f023d700bfff19a08553 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                            
                                                                          








                                                                                                              
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
    {
        public BcatService(BcatServicePermissionLevel permissionLevel) { }

        [CmifCommand(10100)]
        public Result RequestSyncDeliveryCache(out IDeliveryCacheProgressService deliveryCacheProgressService)
        {
            deliveryCacheProgressService = new DeliveryCacheProgressService();

            return Result.Success;
        }
    }
}