IGeneralInterface.cs 301 B

12345678910111213
  1. namespace Ryujinx.HLE.HOS.Services.Sm
  2. {
  3. [Service("spl:")]
  4. [Service("spl:es")]
  5. [Service("spl:fs")]
  6. [Service("spl:manu")]
  7. [Service("spl:mig")]
  8. [Service("spl:ssl")]
  9. class IGeneralInterface : IpcService
  10. {
  11. public IGeneralInterface(ServiceCtx context) { }
  12. }
  13. }