Rename services with the official interface names
This commit is contained in:
@@ -3,17 +3,17 @@ using System.Collections.Generic;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.Services.Ssl
|
||||
{
|
||||
class ServiceSsl : IpcService
|
||||
class ISslService : IpcService
|
||||
{
|
||||
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
||||
|
||||
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
||||
|
||||
public ServiceSsl()
|
||||
public ISslService()
|
||||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
//{ 0, Function }
|
||||
//...
|
||||
};
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user