aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Bcat/ServiceCreator/IBcatService.cs
blob: 6c0073ed89734e973489b32e464bb30da5bf588f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using Ryujinx.HLE.HOS.Services.Arp;

namespace Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator
{
    class IBcatService : IpcService
    {
        public IBcatService(ApplicationLaunchProperty applicationLaunchProperty) { }

        [CommandHipc(10100)]
        // RequestSyncDeliveryCache() -> object<nn::bcat::detail::ipc::IDeliveryCacheProgressService>
        public ResultCode RequestSyncDeliveryCache(ServiceCtx context)
        {
            MakeObject(context, new IDeliveryCacheProgressService(context));

            return ResultCode.Success;
        }
    }
}