cfcc360d06
* ldn: Implement calls of UserLocalCommunicationService - Implement `IUserServiceCreator: CreateUserLocalCommunicationService` according to RE. - Implement `IUserLocalCommunicationService` calls: - Every calls in this interface are layered to `NetworkInterface`. - `GetState` according to RE. - `InitializeOld`, `Initialize` and `Finalize` stubbed with the appropriate result code and some TODO according to RE. - `AttachStateChangeEvent` according to RE. * Fix var name and TODO comments * Fix review
50 lines
No EOL
919 B
C#
50 lines
No EOL
919 B
C#
namespace Ryujinx.Common.Logging
|
|
{
|
|
public enum LogClass
|
|
{
|
|
Application,
|
|
Audio,
|
|
Cpu,
|
|
Font,
|
|
Emulation,
|
|
Gpu,
|
|
Hid,
|
|
Kernel,
|
|
KernelIpc,
|
|
KernelScheduler,
|
|
KernelSvc,
|
|
Loader,
|
|
Service,
|
|
ServiceAcc,
|
|
ServiceAm,
|
|
ServiceApm,
|
|
ServiceAudio,
|
|
ServiceBsd,
|
|
ServiceBtm,
|
|
ServiceCaps,
|
|
ServiceFriend,
|
|
ServiceFs,
|
|
ServiceHid,
|
|
ServiceIrs,
|
|
ServiceLdn,
|
|
ServiceLdr,
|
|
ServiceLm,
|
|
ServiceMm,
|
|
ServiceNfp,
|
|
ServiceNifm,
|
|
ServiceNs,
|
|
ServiceNsd,
|
|
ServiceNv,
|
|
ServicePctl,
|
|
ServicePl,
|
|
ServicePrepo,
|
|
ServicePsm,
|
|
ServiceSet,
|
|
ServiceSfdnsres,
|
|
ServiceSm,
|
|
ServiceSsl,
|
|
ServiceSss,
|
|
ServiceTime,
|
|
ServiceVi
|
|
}
|
|
} |