diff options
Diffstat (limited to 'Ryujinx.HLE/OsHle/Services/Ns/IVulnerabilityManagerInterface.cs')
| -rw-r--r-- | Ryujinx.HLE/OsHle/Services/Ns/IVulnerabilityManagerInterface.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/Ns/IVulnerabilityManagerInterface.cs b/Ryujinx.HLE/OsHle/Services/Ns/IVulnerabilityManagerInterface.cs new file mode 100644 index 00000000..6a2c3d3b --- /dev/null +++ b/Ryujinx.HLE/OsHle/Services/Ns/IVulnerabilityManagerInterface.cs @@ -0,0 +1,20 @@ +using Ryujinx.HLE.OsHle.Ipc; +using System.Collections.Generic; + +namespace Ryujinx.HLE.OsHle.Services.Ns +{ + class IVulnerabilityManagerInterface : IpcService + { + private Dictionary<int, ServiceProcessRequest> m_Commands; + + public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands; + + public IVulnerabilityManagerInterface() + { + m_Commands = new Dictionary<int, ServiceProcessRequest>() + { + //... + }; + } + } +}
\ No newline at end of file |
