IServiceGetterInterface.cs 548 B

123456789101112131415161718
  1. namespace Ryujinx.HLE.HOS.Services.Ns
  2. {
  3. [Service("ns:am2")]
  4. [Service("ns:ec")]
  5. class IServiceGetterInterface : IpcService
  6. {
  7. public IServiceGetterInterface(ServiceCtx context) { }
  8. [Command(7996)]
  9. // GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface>
  10. public ResultCode GetApplicationManagerInterface(ServiceCtx context)
  11. {
  12. MakeObject(context, new IApplicationManagerInterface(context));
  13. return ResultCode.Success;
  14. }
  15. }
  16. }