summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/sm/sm.h
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-12-11 00:17:04 +0100
committerGitHub <noreply@github.com>2023-12-11 00:17:04 +0100
commit24e7ace876081f3fec8b53151ae802077e6c82d4 (patch)
tree02d084dd92c3bdbd350390478fb1b8e4dc5bdd62 /src/core/hle/service/sm/sm.h
parentMerge pull request #12317 from liamwhite/sc-fix (diff)
parentsm:: fix tipc deserialization (diff)
downloadyuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar.gz
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar.bz2
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar.lz
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar.xz
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.tar.zst
yuzu-24e7ace876081f3fec8b53151ae802077e6c82d4.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 cf102c339..ff74f588a 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;