Ryujinx/Ryujinx.Core/OsHle/Services/Sfdnsres/ServiceSfdnsres.cs

21 lines
513 B
C#
Raw Normal View History

using Ryujinx.Core.OsHle.Ipc;
using System.Collections.Generic;
namespace Ryujinx.Core.OsHle.IpcServices.Sfdnsres
{
class ServiceSfdnsres : IIpcService
{
private Dictionary<int, ServiceProcessRequest> m_Commands;
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
public ServiceSfdnsres()
{
m_Commands = new Dictionary<int, ServiceProcessRequest>()
{
//{ 0, Function }
};
}
}
}