ryujinx_ryubing/src/Ryujinx.HLE/HOS/Services/Am/AppletAE/IStorage.cs
Aaron Robinson 8e1e2d69df Make Cmif commands in HLE use virtual method invocation instead of reflection
# Conflicts:
#	src/Ryujinx.HLE/HOS/Services/IpcService.cs
2025-12-30 18:52:32 -06:00

23 lines
611 B
C#

namespace Ryujinx.HLE.HOS.Services.Am.AppletAE
{
partial class IStorage : IpcService
{
public bool IsReadOnly { get; private set; }
public byte[] Data { get; private set; }
public IStorage(byte[] data, bool isReadOnly = false)
{
IsReadOnly = isReadOnly;
Data = data;
}
[CommandCmif(0)]
// Open() -> object<nn::am::service::IStorageAccessor>
public ResultCode Open(ServiceCtx context)
{
MakeObject(context, new IStorageAccessor(this));
return ResultCode.Success;
}
}
}