diff options
| author | bunnei <bunneidev@gmail.com> | 2018-03-18 20:17:06 -0400 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2018-03-18 20:56:33 -0400 |
| commit | 019f1a0cf0505436854ed631da56b97b1d490945 (patch) | |
| tree | 5a61220815f313c2dab10e12c1c75956c12fd355 /src/core/hle/kernel/hle_ipc.h | |
| parent | e353b9fb3d374740bab24bffebd7f3a81ce062a8 (diff) | |
hle_ipc: Remove GetPointer(..) usage with WriteToOutgoingCommandBuffer.
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.h')
| -rw-r--r-- | src/core/hle/kernel/hle_ipc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.h b/src/core/hle/kernel/hle_ipc.h index b5631b773..743835f18 100644 --- a/src/core/hle/kernel/hle_ipc.h +++ b/src/core/hle/kernel/hle_ipc.h @@ -13,6 +13,7 @@ #include "core/hle/ipc.h" #include "core/hle/kernel/kernel.h" #include "core/hle/kernel/server_session.h" +#include "core/hle/kernel/thread.h" namespace Service { class ServiceFrameworkBase; @@ -108,8 +109,7 @@ public: ResultCode PopulateFromIncomingCommandBuffer(u32_le* src_cmdbuf, Process& src_process, HandleTable& src_table); /// Writes data from this context back to the requesting process/thread. - ResultCode WriteToOutgoingCommandBuffer(u32_le* dst_cmdbuf, Process& dst_process, - HandleTable& dst_table); + ResultCode WriteToOutgoingCommandBuffer(Thread& thread); u32_le GetCommand() const { return command; |
