IETicketService.cs 509 B

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