IClientRootSession.cs 217 B

123456789
  1. namespace Ryujinx.HLE.HOS.Services.Usb
  2. {
  3. [Service("usb:hs")]
  4. [Service("usb:hs:a")] // 7.0.0+
  5. class IClientRootSession : IpcService
  6. {
  7. public IClientRootSession(ServiceCtx context) { }
  8. }
  9. }