summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-01-01 00:09:41 +0100
committerLioncash <mathew1800@gmail.com>2019-01-01 01:04:16 +0100
commit1f0c8bfedab8d5296702b2c837574c9be7cd066f (patch)
treef1f8b7ef35d9f55fd1ee64924e1ec0c7198b84e5 /src/core/hle/kernel/hle_ipc.h
parentMerge pull request #1966 from lioncash/backtrace (diff)
downloadyuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar.gz
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar.bz2
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar.lz
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar.xz
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.tar.zst
yuzu-1f0c8bfedab8d5296702b2c837574c9be7cd066f.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/hle_ipc.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h
index e5c0610cd..cb1c5aff3 100644
--- a/src/core/hle/kernel/hle_ipc.h
+++ b/src/core/hle/kernel/hle_ipc.h
@@ -14,8 +14,6 @@
#include "common/swap.h"
#include "core/hle/ipc.h"
#include "core/hle/kernel/object.h"
-#include "core/hle/kernel/server_session.h"
-#include "core/hle/kernel/thread.h"
namespace Service {
class ServiceFrameworkBase;
@@ -27,9 +25,13 @@ class Domain;
class HandleTable;
class HLERequestContext;
class Process;
+class ServerSession;
+class Thread;
class ReadableEvent;
class WritableEvent;
+enum class ThreadWakeupReason;
+
/**
* Interface implemented by HLE Session handlers.
* This can be provided to a ServerSession in order to hook into several relevant events
@@ -37,7 +39,8 @@ class WritableEvent;
*/
class SessionRequestHandler : public std::enable_shared_from_this<SessionRequestHandler> {
public:
- virtual ~SessionRequestHandler() = default;
+ SessionRequestHandler();
+ virtual ~SessionRequestHandler();
/**
* Handles a sync request from the emulated application.