summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sm/sm.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-12-10 04:16:35 +0100
committerLiam <byteslice@airmail.cc>2023-12-10 04:56:21 +0100
commita529ef4c09b1c8041800fc1a86d173388877da3c (patch)
tree6c633cdbd85c1d833e9100b7bc168f3bc91dadb7 /src/core/hle/service/sm/sm.h
parentMerge pull request #12296 from liamwhite/client-session (diff)
downloadyuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar.gz
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar.bz2
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar.lz
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar.xz
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.tar.zst
yuzu-a529ef4c09b1c8041800fc1a86d173388877da3c.zip
Diffstat (limited to 'src/core/hle/service/sm/sm.h')
-rw-r--r--src/core/hle/service/sm/sm.h7
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;