summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar german772021-05-02 18:41:03 -0500
committerGravatar Narr the Reg2022-04-16 00:49:21 -0500
commitb2359f1527df30e151a44221f4276e6b14ec0bca (patch)
treee8b887327b39ad3a07dde8d7d9c85a55e4ff7494 /src/core/hle/kernel/kernel.h
parentMerge pull request #8205 from liamwhite/n64-misc (diff)
downloadyuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.gz
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.tar.xz
yuzu-b2359f1527df30e151a44221f4276e6b14ec0bca.zip
hidbus: Implement hidbus and ringcon
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h
index d709c368b..12e44b8a5 100644
--- a/src/core/hle/kernel/kernel.h
+++ b/src/core/hle/kernel/kernel.h
@@ -264,6 +264,12 @@ public:
264 /// Gets the shared memory object for Time services. 264 /// Gets the shared memory object for Time services.
265 const Kernel::KSharedMemory& GetTimeSharedMem() const; 265 const Kernel::KSharedMemory& GetTimeSharedMem() const;
266 266
267 /// Gets the shared memory object for HIDBus services.
268 Kernel::KSharedMemory& GetHidBusSharedMem();
269
270 /// Gets the shared memory object for HIDBus services.
271 const Kernel::KSharedMemory& GetHidBusSharedMem() const;
272
267 /// Suspend/unsuspend the OS. 273 /// Suspend/unsuspend the OS.
268 void Suspend(bool in_suspention); 274 void Suspend(bool in_suspention);
269 275