diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Ns')
5 files changed, 14 insertions, 14 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Ns/IAddOnContentManager.cs b/Ryujinx.HLE/HOS/Services/Ns/IAddOnContentManager.cs index debcd57e..c5525a5d 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IAddOnContentManager.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IAddOnContentManager.cs @@ -18,7 +18,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns _addOnContentListChangedEvent = new KEvent(context.Device.System.KernelContext); } - [Command(2)] + [CommandHipc(2)] // CountAddOnContent(pid) -> u32 public ResultCode CountAddOnContent(ServiceCtx context) { @@ -47,7 +47,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return (uint)context.Device.System.ContentManager.GetAocCount(); } - [Command(3)] + [CommandHipc(3)] // ListAddOnContent(u32, u32, pid) -> (u32, buffer<u32>) public ResultCode ListAddOnContent(ServiceCtx context) { @@ -84,7 +84,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(5)] + [CommandHipc(5)] // GetAddOnContentBaseId(pid) -> u64 public ResultCode GetAddonContentBaseId(ServiceCtx context) { @@ -114,7 +114,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return aocBaseId; } - [Command(7)] + [CommandHipc(7)] // PrepareAddOnContent(u32, pid) public ResultCode PrepareAddOnContent(ServiceCtx context) { @@ -131,7 +131,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(8)] + [CommandHipc(8)] // GetAddOnContentListChangedEvent() -> handle<copy> public ResultCode GetAddOnContentListChangedEvent(ServiceCtx context) { @@ -153,7 +153,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns } - [Command(9)] // [10.0.0+] + [CommandHipc(9)] // [10.0.0+] // GetAddOnContentLostErrorCode() -> u64 public ResultCode GetAddOnContentLostErrorCode(ServiceCtx context) { @@ -166,7 +166,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(100)] + [CommandHipc(100)] // CreateEcPurchasedEventManager() -> object<nn::ec::IPurchaseEventManager> public ResultCode CreateEcPurchasedEventManager(ServiceCtx context) { @@ -177,7 +177,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(101)] + [CommandHipc(101)] // CreatePermanentEcPurchasedEventManager() -> object<nn::ec::IPurchaseEventManager> public ResultCode CreatePermanentEcPurchasedEventManager(ServiceCtx context) { diff --git a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs b/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs index 8edf13c7..ab10928f 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IApplicationManagerInterface.cs @@ -5,7 +5,7 @@ { public IApplicationManagerInterface(ServiceCtx context) { } - [Command(400)] + [CommandHipc(400)] // GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>) public ResultCode GetApplicationControlData(ServiceCtx context) { diff --git a/Ryujinx.HLE/HOS/Services/Ns/IPurchaseEventManager.cs b/Ryujinx.HLE/HOS/Services/Ns/IPurchaseEventManager.cs index 8d8293c6..2ea3ee11 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IPurchaseEventManager.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IPurchaseEventManager.cs @@ -16,7 +16,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns _purchasedEvent = new KEvent(system.KernelContext); } - [Command(0)] + [CommandHipc(0)] // SetDefaultDeliveryTarget(pid, buffer<bytes, 5> unknown) public ResultCode SetDefaultDeliveryTarget(ServiceCtx context) { @@ -35,7 +35,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(2)] + [CommandHipc(2)] // GetPurchasedEventReadableHandle() -> handle<copy, event> public ResultCode GetPurchasedEventReadableHandle(ServiceCtx context) { diff --git a/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs b/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs index 98e12472..ff57beb0 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IReadOnlyApplicationControlDataInterface.cs @@ -4,7 +4,7 @@ { public IReadOnlyApplicationControlDataInterface(ServiceCtx context) { } - [Command(0)] + [CommandHipc(0)] // GetApplicationControlData(u8, u64) -> (unknown<4>, buffer<unknown, 6>) public ResultCode GetApplicationControlData(ServiceCtx context) { diff --git a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs b/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs index a16f76f4..1d7fa2c3 100644 --- a/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs +++ b/Ryujinx.HLE/HOS/Services/Ns/IServiceGetterInterface.cs @@ -9,7 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns { public IServiceGetterInterface(ServiceCtx context) { } - [Command(7996)] + [CommandHipc(7996)] // GetApplicationManagerInterface() -> object<nn::ns::detail::IApplicationManagerInterface> public ResultCode GetApplicationManagerInterface(ServiceCtx context) { @@ -18,7 +18,7 @@ namespace Ryujinx.HLE.HOS.Services.Ns return ResultCode.Success; } - [Command(7989)] + [CommandHipc(7989)] // GetReadOnlyApplicationControlDataInterface() -> object<nn::ns::detail::IReadOnlyApplicationControlDataInterface> public ResultCode GetReadOnlyApplicationControlDataInterface(ServiceCtx context) { |
