diff options
| author | 2016-12-16 00:37:38 -0500 | |
|---|---|---|
| committer | 2016-12-21 23:48:13 -0500 | |
| commit | 4fc8b8229ed1d9ea9d20faee7059c898265db6cf (patch) | |
| tree | 45095e416393473fe9721c60edd9a220b2e44dd4 /src/core/hle/kernel/kernel.h | |
| parent | core: Consolidate core and system state, remove system module & cleanups. (diff) | |
| download | yuzu-4fc8b8229ed1d9ea9d20faee7059c898265db6cf.tar.gz yuzu-4fc8b8229ed1d9ea9d20faee7059c898265db6cf.tar.xz yuzu-4fc8b8229ed1d9ea9d20faee7059c898265db6cf.zip | |
core: Remove HLE module, consolidate code & various cleanups.
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index 1adcf6c71..9503e7d04 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -11,11 +11,12 @@ | |||
| 11 | #include <vector> | 11 | #include <vector> |
| 12 | #include <boost/smart_ptr/intrusive_ptr.hpp> | 12 | #include <boost/smart_ptr/intrusive_ptr.hpp> |
| 13 | #include "common/common_types.h" | 13 | #include "common/common_types.h" |
| 14 | #include "core/hle/hle.h" | ||
| 15 | #include "core/hle/result.h" | 14 | #include "core/hle/result.h" |
| 16 | 15 | ||
| 17 | namespace Kernel { | 16 | namespace Kernel { |
| 18 | 17 | ||
| 18 | using Handle = u32; | ||
| 19 | |||
| 19 | class Thread; | 20 | class Thread; |
| 20 | 21 | ||
| 21 | // TODO: Verify code | 22 | // TODO: Verify code |