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