diff options
| author | 2018-08-03 00:28:43 -0400 | |
|---|---|---|
| committer | 2018-08-03 00:28:43 -0400 | |
| commit | 4c3c608d59b8c8d8a9bbccc1b55efcab346e650f (patch) | |
| tree | 90f6325f37efcb09c79cfa2f84eb82157d4592a7 /src/core/hle/ipc_helpers.h | |
| parent | Merge pull request #904 from lioncash/static (diff) | |
| parent | kernel: Move object class to its own source files (diff) | |
| download | yuzu-4c3c608d59b8c8d8a9bbccc1b55efcab346e650f.tar.gz yuzu-4c3c608d59b8c8d8a9bbccc1b55efcab346e650f.tar.xz yuzu-4c3c608d59b8c8d8a9bbccc1b55efcab346e650f.zip | |
Merge pull request #894 from lioncash/object
kernel: Move object class to its own source files
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
| -rw-r--r-- | src/core/hle/ipc_helpers.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h index 7fb0da408..d3a734831 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h | |||
| @@ -5,15 +5,18 @@ | |||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <array> | 7 | #include <array> |
| 8 | #include <cstring> | ||
| 9 | #include <memory> | ||
| 8 | #include <tuple> | 10 | #include <tuple> |
| 9 | #include <type_traits> | 11 | #include <type_traits> |
| 10 | #include <utility> | 12 | #include <utility> |
| 13 | #include "common/assert.h" | ||
| 14 | #include "common/common_types.h" | ||
| 11 | #include "core/hle/ipc.h" | 15 | #include "core/hle/ipc.h" |
| 12 | #include "core/hle/kernel/client_port.h" | 16 | #include "core/hle/kernel/client_port.h" |
| 13 | #include "core/hle/kernel/client_session.h" | 17 | #include "core/hle/kernel/client_session.h" |
| 14 | #include "core/hle/kernel/handle_table.h" | ||
| 15 | #include "core/hle/kernel/hle_ipc.h" | 18 | #include "core/hle/kernel/hle_ipc.h" |
| 16 | #include "core/hle/kernel/kernel.h" | 19 | #include "core/hle/kernel/object.h" |
| 17 | #include "core/hle/kernel/server_port.h" | 20 | #include "core/hle/kernel/server_port.h" |
| 18 | 21 | ||
| 19 | namespace IPC { | 22 | namespace IPC { |