d5c0de8362
* Implement IRoInterface This is required by Super Mario Party. This commit also adds MapProcessCodeMemory and UnmapProcessCodeMemory functions in KMemoryManager. Those two calls might not reflect what the SVC of the same names do. * Fix some code style issues * Use MakeError to clarify error code * Add NRR and NRO constants * Fix some codestyle issues * Fix InvalidMemoryState error code
44 lines
797 B
C#
44 lines
797 B
C#
namespace Ryujinx.HLE.Logging
|
|
{
|
|
public enum LogClass
|
|
{
|
|
Audio,
|
|
Cpu,
|
|
Font,
|
|
Gpu,
|
|
Hid,
|
|
Kernel,
|
|
KernelIpc,
|
|
KernelScheduler,
|
|
KernelSvc,
|
|
Loader,
|
|
Service,
|
|
ServiceAcc,
|
|
ServiceAm,
|
|
ServiceApm,
|
|
ServiceAudio,
|
|
ServiceBsd,
|
|
ServiceCaps,
|
|
ServiceFriend,
|
|
ServiceFs,
|
|
ServiceHid,
|
|
ServiceIrs,
|
|
ServiceLdr,
|
|
ServiceLm,
|
|
ServiceMm,
|
|
ServiceNfp,
|
|
ServiceNifm,
|
|
ServiceNs,
|
|
ServiceNv,
|
|
ServicePctl,
|
|
ServicePl,
|
|
ServicePrepo,
|
|
ServiceSet,
|
|
ServiceSfdnsres,
|
|
ServiceSm,
|
|
ServiceSsl,
|
|
ServiceSss,
|
|
ServiceTime,
|
|
ServiceVi
|
|
}
|
|
}
|