From 3d99fa326d0c43f142be1d97cb096018f476fb4c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 30 Nov 2020 22:18:18 -0800 Subject: [PATCH] sm: implement UserService::DetachClient --- .../include/stratosphere/sm/impl/sm_user_interface.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libstratosphere/include/stratosphere/sm/impl/sm_user_interface.hpp b/libstratosphere/include/stratosphere/sm/impl/sm_user_interface.hpp index 6bb7c72f..d94a4450 100644 --- a/libstratosphere/include/stratosphere/sm/impl/sm_user_interface.hpp +++ b/libstratosphere/include/stratosphere/sm/impl/sm_user_interface.hpp @@ -26,6 +26,7 @@ namespace ams::sm::impl { AMS_SF_METHOD_INFO(C, H, 1, Result, GetServiceHandle, (sf::OutMoveHandle out_h, ServiceName service)) \ AMS_SF_METHOD_INFO(C, H, 2, Result, RegisterService, (sf::OutMoveHandle out_h, ServiceName service, u32 max_sessions, bool is_light)) \ AMS_SF_METHOD_INFO(C, H, 3, Result, UnregisterService, (ServiceName service)) \ + AMS_SF_METHOD_INFO(C, H, 4, Result, DetachClient, (const sf::ClientProcessId &client_process_id)) \ AMS_SF_METHOD_INFO(C, H, 65000, Result, AtmosphereInstallMitm, (sf::OutMoveHandle srv_h, sf::OutMoveHandle qry_h, ServiceName service)) \ AMS_SF_METHOD_INFO(C, H, 65001, Result, AtmosphereUninstallMitm, (ServiceName service)) \ AMS_SF_METHOD_INFO(C, H, 65003, Result, AtmosphereAcknowledgeMitmSession, (sf::Out client_info, sf::OutMoveHandle fwd_h, ServiceName service)) \