diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-01 22:40:00 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-01 23:34:42 -0400 |
commit | bf45092c616987a3b58b7a859811938f885aa4d1 (patch) | |
tree | 805c60b2692d6a700bea69e5181f9010065134f8 /src/core/hle/ipc_helpers.h | |
parent | 746d7d4d280d87606d5033ca28b05261435b927d (diff) |
kernel: Move object class to its own source files
General moving to keep kernel object types separate from the direct
kernel code. Also essentially a preliminary cleanup before eliminating
global kernel state in the kernel code.
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 7fb0da408a..d3a7348319 100644 --- a/src/core/hle/ipc_helpers.h +++ b/src/core/hle/ipc_helpers.h @@ -5,15 +5,18 @@ #pragma once #include <array> +#include <cstring> +#include <memory> #include <tuple> #include <type_traits> #include <utility> +#include "common/assert.h" +#include "common/common_types.h" #include "core/hle/ipc.h" #include "core/hle/kernel/client_port.h" #include "core/hle/kernel/client_session.h" -#include "core/hle/kernel/handle_table.h" #include "core/hle/kernel/hle_ipc.h" -#include "core/hle/kernel/kernel.h" +#include "core/hle/kernel/object.h" #include "core/hle/kernel/server_port.h" namespace IPC { |