mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 19:16:38 +00:00
560ccbeb2d
* Refactoring commands handling - Use Reflection to handle commands ID. - Add all symbols (from SwIPC so not all time accurate). - Re-sort some services commands methods. - Some cleanup. - Keep some empty constructor for consistency. * Fix order in IProfile
27 lines
No EOL
750 B
C#
27 lines
No EOL
750 B
C#
namespace Ryujinx.HLE.HOS.Services.Am
|
|
{
|
|
class ILibraryAppletCreator : IpcService
|
|
{
|
|
public ILibraryAppletCreator() { }
|
|
|
|
[Command(0)]
|
|
// CreateLibraryApplet(u32, u32) -> object<nn::am::service::ILibraryAppletAccessor>
|
|
public long CreateLibraryApplet(ServiceCtx context)
|
|
{
|
|
MakeObject(context, new ILibraryAppletAccessor(context.Device.System));
|
|
|
|
return 0;
|
|
}
|
|
|
|
[Command(10)]
|
|
// CreateStorage(u64) -> object<nn::am::service::IStorage>
|
|
public long CreateStorage(ServiceCtx context)
|
|
{
|
|
long size = context.RequestData.ReadInt64();
|
|
|
|
MakeObject(context, new IStorage(new byte[size]));
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |