2018-08-16 23:47:36 +00:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Bcat
|
2018-07-23 14:20:16 +00:00
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
[Service("bcat:a")]
|
|
|
|
[Service("bcat:m")]
|
|
|
|
[Service("bcat:u")]
|
|
|
|
[Service("bcat:s")]
|
2018-07-23 14:20:16 +00:00
|
|
|
class IServiceCreator : IpcService
|
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
public IServiceCreator(ServiceCtx context) { }
|
2018-07-23 14:20:16 +00:00
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(0)]
|
|
|
|
// CreateBcatService(u64, pid) -> object<nn::bcat::detail::ipc::IBcatService>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateBcatService(ServiceCtx context)
|
2018-07-23 14:20:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long id = context.RequestData.ReadInt64();
|
2018-07-23 14:20:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IBcatService());
|
2018-08-16 23:47:36 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-23 14:20:16 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
[Command(1)]
|
|
|
|
// CreateDeliveryCacheStorageService(u64, pid) -> object<nn::bcat::detail::ipc::IDeliveryCacheStorageService>
|
2019-07-14 19:04:38 +00:00
|
|
|
public ResultCode CreateDeliveryCacheStorageService(ServiceCtx context)
|
2018-07-23 14:20:16 +00:00
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
long id = context.RequestData.ReadInt64();
|
2018-07-23 14:20:16 +00:00
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
MakeObject(context, new IDeliveryCacheStorageService());
|
2018-07-23 14:20:16 +00:00
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
return ResultCode.Success;
|
2018-07-23 14:20:16 +00:00
|
|
|
}
|
|
|
|
}
|
2019-07-14 19:04:38 +00:00
|
|
|
}
|