aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc/async_context.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-02-19 14:42:12 -0500
committerLiam <byteslice@airmail.cc>2023-03-01 10:39:49 -0500
commit65be230fdda302b25447f2f09b06e3238bd09e79 (patch)
tree68250d7bc8151041b236dcd79483df98938952cd /src/core/hle/service/acc/async_context.h
parent4a1aa9859844c25598c1635d760a53ca2fd5afc3 (diff)
service: move hle_ipc from kernel
Diffstat (limited to 'src/core/hle/service/acc/async_context.h')
-rw-r--r--src/core/hle/service/acc/async_context.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/acc/async_context.h b/src/core/hle/service/acc/async_context.h
index 26332d241..d7bffc055 100644
--- a/src/core/hle/service/acc/async_context.h
+++ b/src/core/hle/service/acc/async_context.h
@@ -18,10 +18,10 @@ public:
explicit IAsyncContext(Core::System& system_);
~IAsyncContext() override;
- void GetSystemEvent(Kernel::HLERequestContext& ctx);
- void Cancel(Kernel::HLERequestContext& ctx);
- void HasDone(Kernel::HLERequestContext& ctx);
- void GetResult(Kernel::HLERequestContext& ctx);
+ void GetSystemEvent(HLERequestContext& ctx);
+ void Cancel(HLERequestContext& ctx);
+ void HasDone(HLERequestContext& ctx);
+ void GetResult(HLERequestContext& ctx);
protected:
virtual bool IsComplete() const = 0;