diff options
Diffstat (limited to 'Ryujinx.Core/LogClass.cs')
-rw-r--r-- | Ryujinx.Core/LogClass.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Ryujinx.Core/LogClass.cs b/Ryujinx.Core/LogClass.cs new file mode 100644 index 00000000..67fd8559 --- /dev/null +++ b/Ryujinx.Core/LogClass.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace Ryujinx.Core +{ + public enum LogClass + { + Audio, + CPU, + GPU, + Kernel, + KernelIpc, + KernelScheduler, + KernelSvc, + Loader, + Service, + ServiceAcc, + ServiceAm, + ServiceApm, + ServiceAudio, + ServiceBsd, + ServiceFriend, + ServiceFs, + ServiceHid, + ServiceLm, + ServiceNifm, + ServiceNs, + ServiceNv, + ServicePctl, + ServicePl, + ServiceSet, + ServiceSfdnsres, + ServiceSm, + ServiceSss, + ServiceTime, + ServiceVi, + Count, + } +} |