e174100474
* Implement many objects, improve logging. Change and rename folders of Services Add Logging of IpcMessage. Add "lm" Log Service. Parse Errors of SetTerminateResult Add Svc Calls. Add many object implementations. * Corrections Forgotten Debug Conf * Corrections 2 * Corrections 3 * Corrections 4
33 lines
No EOL
784 B
C#
33 lines
No EOL
784 B
C#
using Ryujinx.Core.OsHle.Ipc;
|
|
using System.Collections.Generic;
|
|
|
|
using static Ryujinx.Core.OsHle.IpcServices.ObjHelper;
|
|
|
|
namespace Ryujinx.Core.OsHle.IpcServices.Am
|
|
{
|
|
class IStorage : IIpcService
|
|
{
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
public byte[] Data { get; private set; }
|
|
|
|
public IStorage(byte[] Data)
|
|
{
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
{
|
|
{ 0, Open }
|
|
};
|
|
|
|
this.Data = Data;
|
|
}
|
|
|
|
public long Open(ServiceCtx Context)
|
|
{
|
|
MakeObject(Context, new IStorageAccessor(this));
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |