IApplicationManagerInterface.cs 585 B

1234567891011121314151617181920212223
  1. using Ryujinx.HLE.HOS.Ipc;
  2. using Ryujinx.HLE.HOS.Kernel;
  3. using System.Collections.Generic;
  4. namespace Ryujinx.HLE.HOS.Services.Ns
  5. {
  6. class IApplicationManagerInterface : IpcService
  7. {
  8. private Dictionary<int, ServiceProcessRequest> m_Commands;
  9. public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
  10. private bool IsInitialized;
  11. public IApplicationManagerInterface()
  12. {
  13. m_Commands = new Dictionary<int, ServiceProcessRequest>()
  14. {
  15. };
  16. }
  17. }
  18. }