LogClass.cs 662 B

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace Ryujinx.Core
  2. {
  3. public enum LogClass
  4. {
  5. Audio,
  6. CPU,
  7. GPU,
  8. Kernel,
  9. KernelIpc,
  10. KernelScheduler,
  11. KernelSvc,
  12. Loader,
  13. Service,
  14. ServiceAcc,
  15. ServiceAm,
  16. ServiceApm,
  17. ServiceAudio,
  18. ServiceBsd,
  19. ServiceFriend,
  20. ServiceFs,
  21. ServiceHid,
  22. ServiceLm,
  23. ServiceNifm,
  24. ServiceNs,
  25. ServiceNv,
  26. ServicePctl,
  27. ServicePl,
  28. ServicePrepo,
  29. ServiceSet,
  30. ServiceSfdnsres,
  31. ServiceSm,
  32. ServiceSss,
  33. ServiceTime,
  34. ServiceVi,
  35. Count,
  36. }
  37. }