2018-08-17 01:47:36 +02:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
2018-04-22 01:04:43 +02:00
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
[Service("ns:am2")]
|
|
|
|
[Service("ns:ec")]
|
2019-09-19 02:45:11 +02:00
|
|
|
[Service("ns:rid")]
|
|
|
|
[Service("ns:rt")]
|
|
|
|
[Service("ns:web")]
|
2018-04-22 01:04:43 +02:00
|
|
|
class IServiceGetterInterface : IpcService
|
|
|
|
{
|
2019-07-12 03:13:43 +02:00
|
|
|
public IServiceGetterInterface(ServiceCtx context) { }
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(7996)]
|
2019-07-12 03:13:43 +02:00
|
|
|
// GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface>
|
2019-07-14 21:04:38 +02:00
|
|
|
public ResultCode GetApplicationManagerInterface(ServiceCtx context)
|
2019-02-14 01:44:39 +01:00
|
|
|
{
|
2019-07-10 17:59:54 +02:00
|
|
|
MakeObject(context, new IApplicationManagerInterface(context));
|
2019-02-14 01:44:39 +01:00
|
|
|
|
2019-07-14 21:04:38 +02:00
|
|
|
return ResultCode.Success;
|
2019-02-14 01:44:39 +01:00
|
|
|
}
|
2020-04-28 03:44:29 +02:00
|
|
|
|
2021-04-14 00:01:24 +02:00
|
|
|
[CommandHipc(7989)]
|
2020-04-28 03:44:29 +02:00
|
|
|
// GetReadOnlyApplicationControlDataInterface() -> object<nn::ns::detail::IReadOnlyApplicationControlDataInterface>
|
|
|
|
public ResultCode GetReadOnlyApplicationControlDataInterface(ServiceCtx context)
|
|
|
|
{
|
|
|
|
MakeObject(context, new IReadOnlyApplicationControlDataInterface(context));
|
|
|
|
|
|
|
|
return ResultCode.Success;
|
|
|
|
}
|
2018-04-22 01:04:43 +02:00
|
|
|
}
|
|
|
|
}
|