diff options
| author | Liam <byteslice@airmail.cc> | 2023-12-09 22:16:35 -0500 |
|---|---|---|
| committer | Liam <byteslice@airmail.cc> | 2023-12-09 22:56:21 -0500 |
| commit | a529ef4c09b1c8041800fc1a86d173388877da3c (patch) | |
| tree | 6c633cdbd85c1d833e9100b7bc168f3bc91dadb7 /src/core/hle/service/sm/sm.h | |
| parent | 875568bb3e34725578f7fa3661c8bad89f23a173 (diff) | |
sm:: fix tipc deserialization
Diffstat (limited to 'src/core/hle/service/sm/sm.h')
| -rw-r--r-- | src/core/hle/service/sm/sm.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/service/sm/sm.h b/src/core/hle/service/sm/sm.h index 14bfaf8c2..f081a72d9 100644 --- a/src/core/hle/service/sm/sm.h +++ b/src/core/hle/service/sm/sm.h @@ -37,12 +37,15 @@ public: private: void Initialize(HLERequestContext& ctx); - void GetService(HLERequestContext& ctx); + void GetServiceCmif(HLERequestContext& ctx); void GetServiceTipc(HLERequestContext& ctx); - void RegisterService(HLERequestContext& ctx); + void RegisterServiceCmif(HLERequestContext& ctx); + void RegisterServiceTipc(HLERequestContext& ctx); void UnregisterService(HLERequestContext& ctx); Result GetServiceImpl(Kernel::KClientSession** out_client_session, HLERequestContext& ctx); + void RegisterServiceImpl(HLERequestContext& ctx, std::string name, u32 max_session_count, + bool is_light); ServiceManager& service_manager; Kernel::KernelCore& kernel; |
