IApplicationProxyService.cs 500 B

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