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