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