2019-09-19 00:45:11 +00:00
|
|
|
using Ryujinx.HLE.HOS.Services.Arp;
|
2019-09-10 09:55:28 +00:00
|
|
|
|
2019-09-19 00:45:11 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat.ServiceCreator
|
2018-07-23 14:20:16 +00:00
|
|
|
{
|
|
|
|
class IBcatService : IpcService
|
|
|
|
{
|
2019-09-10 09:55:28 +00:00
|
|
|
public IBcatService(ApplicationLaunchProperty applicationLaunchProperty) { }
|
2020-02-06 04:09:59 +00:00
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
[CommandHipc(10100)]
|
2020-02-06 04:09:59 +00:00
|
|
|
// RequestSyncDeliveryCache() -> object<nn::bcat::detail::ipc::IDeliveryCacheProgressService>
|
|
|
|
public ResultCode RequestSyncDeliveryCache(ServiceCtx context)
|
|
|
|
{
|
|
|
|
MakeObject(context, new IDeliveryCacheProgressService(context));
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-07-23 14:20:16 +00:00
|
|
|
}
|
2019-07-12 01:13:43 +00:00
|
|
|
}
|