diff options
author | german77 <juangerman-13@hotmail.com> | 2021-04-08 20:58:23 +0200 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-04-09 03:40:25 +0200 |
commit | a4e28215304a612e32c66f068243c759e7fee25e (patch) | |
tree | 3985e4defdab92b076f979f1ca4f33b09128e115 | |
parent | caps_u: Update to 12.x (diff) | |
download | yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar.gz yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar.bz2 yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar.lz yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar.xz yuzu-a4e28215304a612e32c66f068243c759e7fee25e.tar.zst yuzu-a4e28215304a612e32c66f068243c759e7fee25e.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/service/glue/arp.cpp | 11 | ||||
-rw-r--r-- | src/core/hle/service/glue/arp.h | 2 |
2 files changed, 10 insertions, 3 deletions
diff --git a/src/core/hle/service/glue/arp.cpp b/src/core/hle/service/glue/arp.cpp index fc77e7286..322125135 100644 --- a/src/core/hle/service/glue/arp.cpp +++ b/src/core/hle/service/glue/arp.cpp @@ -41,6 +41,12 @@ ARP_R::ARP_R(Core::System& system_, const ARPManager& manager_) {1, &ARP_R::GetApplicationLaunchPropertyWithApplicationId, "GetApplicationLaunchPropertyWithApplicationId"}, {2, &ARP_R::GetApplicationControlProperty, "GetApplicationControlProperty"}, {3, &ARP_R::GetApplicationControlPropertyWithApplicationId, "GetApplicationControlPropertyWithApplicationId"}, + {4, nullptr, "GetApplicationInstanceUnregistrationNotifier"}, + {5, nullptr, "ListApplicationInstanceId"}, + {6, nullptr, "GetMicroApplicationInstanceId"}, + {7, nullptr, "GetApplicationCertificate"}, + {9998, nullptr, "GetPreomiaApplicationLaunchProperty"}, + {9999, nullptr, "GetPreomiaApplicationControlProperty"}, }; // clang-format on @@ -243,7 +249,8 @@ ARP_W::ARP_W(Core::System& system_, ARPManager& manager_) // clang-format off static const FunctionInfo functions[] = { {0, &ARP_W::AcquireRegistrar, "AcquireRegistrar"}, - {1, &ARP_W::DeleteProperties, "DeleteProperties"}, + {1, &ARP_W::UnregisterApplicationInstance , "UnregisterApplicationInstance "}, + {2, nullptr, "AcquireUpdater"}, }; // clang-format on @@ -270,7 +277,7 @@ void ARP_W::AcquireRegistrar(Kernel::HLERequestContext& ctx) { rb.PushIpcInterface(registrar); } -void ARP_W::DeleteProperties(Kernel::HLERequestContext& ctx) { +void ARP_W::UnregisterApplicationInstance(Kernel::HLERequestContext& ctx) { IPC::RequestParser rp{ctx}; const auto process_id = rp.PopRaw<u64>(); diff --git a/src/core/hle/service/glue/arp.h b/src/core/hle/service/glue/arp.h index 34b412e26..0df3c5e1f 100644 --- a/src/core/hle/service/glue/arp.h +++ b/src/core/hle/service/glue/arp.h @@ -32,7 +32,7 @@ public: private: void AcquireRegistrar(Kernel::HLERequestContext& ctx); - void DeleteProperties(Kernel::HLERequestContext& ctx); + void UnregisterApplicationInstance(Kernel::HLERequestContext& ctx); ARPManager& manager; std::shared_ptr<IRegistrar> registrar; |