IAllSystemAppletProxiesService.cs 518 B

1234567891011121314151617
  1. namespace Ryujinx.HLE.HOS.Services.Am
  2. {
  3. [Service("appletAE")]
  4. class IAllSystemAppletProxiesService : IpcService
  5. {
  6. public IAllSystemAppletProxiesService(ServiceCtx context) { }
  7. [Command(100)]
  8. // OpenSystemAppletProxy(u64, pid, handle<copy>) -> object<nn::am::service::ISystemAppletProxy>
  9. public ResultCode OpenSystemAppletProxy(ServiceCtx context)
  10. {
  11. MakeObject(context, new ISystemAppletProxy());
  12. return ResultCode.Success;
  13. }
  14. }
  15. }