mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-05-27 21:24:11 -04:00
sm: implement UserService::DetachClient
This commit is contained in:
parent
632c8984c8
commit
05832cec73
3 changed files with 7 additions and 0 deletions
|
@ -51,6 +51,11 @@ namespace ams::sm {
|
|||
return impl::UnregisterService(this->process_id, service);
|
||||
}
|
||||
|
||||
Result UserService::DetachClient(const sf::ClientProcessId &client_process_id) {
|
||||
this->has_initialized = false;
|
||||
return ResultSuccess();
|
||||
}
|
||||
|
||||
Result UserService::AtmosphereInstallMitm(sf::OutMoveHandle srv_h, sf::OutMoveHandle qry_h, ServiceName service) {
|
||||
R_TRY(this->EnsureInitialized());
|
||||
return impl::InstallMitm(srv_h.GetHandlePointer(), qry_h.GetHandlePointer(), this->process_id, service);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue