diff options
| author | Tsubasa0504 <60139445+Tsubasa0504@users.noreply.github.com> | 2024-08-17 17:57:22 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-17 09:57:22 +0100 |
| commit | 0137c9e6353b7866153daf2859c48715a5c39349 (patch) | |
| tree | bb5419e5946fb75f3d99b3b0a76d977773a68102 /src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs | |
| parent | 23fa5f4c9c0ee865dd0a4def3be1822e598c9a91 (diff) | |
nim:eca : Stub CreateServerInterface2 (#7128)
* Add files via upload
* Add files via upload
* Update src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs
---------
Co-authored-by: Ac_K <Acoustik666@gmail.com>
Diffstat (limited to 'src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs')
| -rw-r--r-- | src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs index 52412489..d7e276ea 100644 --- a/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs +++ b/src/Ryujinx.HLE/HOS/Services/Nim/IShopServiceAccessServerInterface.cs @@ -40,5 +40,12 @@ namespace Ryujinx.HLE.HOS.Services.Nim return ResultCode.Success; } + + [CommandCmif(5)] // 17.0.0+ + // CreateServerInterface2(pid, handle<unknown>, u64) -> object<nn::ec::IshopServiceAccessServer> + public ResultCode CreateServerInterface2(ServiceCtx context) + { + return CreateServerInterface(context); + } } } |
