2018-08-17 00:47:36 +01:00
|
|
|
namespace Ryujinx.HLE.HOS.Services.Ns
|
2018-04-22 00:04:43 +01:00
|
|
|
{
|
2019-07-10 16:59:54 +01:00
|
|
|
[Service("ns:am2")]
|
|
|
|
[Service("ns:ec")]
|
2018-04-22 00:04:43 +01:00
|
|
|
class IServiceGetterInterface : IpcService
|
|
|
|
{
|
2019-07-12 02:13:43 +01:00
|
|
|
public IServiceGetterInterface(ServiceCtx context) { }
|
2019-02-14 00:44:39 +00:00
|
|
|
|
2019-07-12 02:13:43 +01:00
|
|
|
[Command(7996)]
|
|
|
|
// GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface>
|
2019-07-14 20:04:38 +01:00
|
|
|
public ResultCode GetApplicationManagerInterface(ServiceCtx context)
|
2019-02-14 00:44:39 +00:00
|
|
|
{
|
2019-07-10 16:59:54 +01:00
|
|
|
MakeObject(context, new IApplicationManagerInterface(context));
|
2019-02-14 00:44:39 +00:00
|
|
|
|
2019-07-14 20:04:38 +01:00
|
|
|
return ResultCode.Success;
|
2019-02-14 00:44:39 +00:00
|
|
|
}
|
2018-04-22 00:04:43 +01:00
|
|
|
}
|
|
|
|
}
|