This commit is contained in:
Ac_K 2018-10-14 00:02:55 +02:00
commit fc9590a73e

View file

@ -7,6 +7,8 @@ namespace Ryujinx.HLE.HOS.Services.Acc
{ {
class IManagerForApplication : IpcService class IManagerForApplication : IpcService
{ {
private UInt128 Uuid;
private Dictionary<int, ServiceProcessRequest> m_Commands; private Dictionary<int, ServiceProcessRequest> m_Commands;
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
@ -18,6 +20,8 @@ namespace Ryujinx.HLE.HOS.Services.Acc
{ 0, CheckAvailability }, { 0, CheckAvailability },
{ 1, GetAccountId } { 1, GetAccountId }
}; };
this.Uuid = Uuid;
} }
// CheckAvailability() // CheckAvailability()