diff options
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
| -rw-r--r-- | src/core/hle/kernel/kernel.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/core/hle/kernel/kernel.h b/src/core/hle/kernel/kernel.h index a7bc6b71a..d0c69677a 100644 --- a/src/core/hle/kernel/kernel.h +++ b/src/core/hle/kernel/kernel.h | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | #include <boost/intrusive_ptr.hpp> | 7 | #include <boost/intrusive_ptr.hpp> |
| 8 | 8 | ||
| 9 | #include <array> | 9 | #include <array> |
| 10 | #include <memory> | ||
| 10 | #include <string> | 11 | #include <string> |
| 11 | #include <vector> | 12 | #include <vector> |
| 12 | 13 | ||
| @@ -15,6 +16,8 @@ | |||
| 15 | #include "core/hle/hle.h" | 16 | #include "core/hle/hle.h" |
| 16 | #include "core/hle/result.h" | 17 | #include "core/hle/result.h" |
| 17 | 18 | ||
| 19 | struct ApplicationInfo; | ||
| 20 | |||
| 18 | namespace Kernel { | 21 | namespace Kernel { |
| 19 | 22 | ||
| 20 | class Thread; | 23 | class Thread; |
| @@ -282,11 +285,4 @@ void Init(); | |||
| 282 | /// Shutdown the kernel | 285 | /// Shutdown the kernel |
| 283 | void Shutdown(); | 286 | void Shutdown(); |
| 284 | 287 | ||
| 285 | /** | ||
| 286 | * Loads executable stored at specified address | ||
| 287 | * @entry_point Entry point in memory of loaded executable | ||
| 288 | * @return True on success, otherwise false | ||
| 289 | */ | ||
| 290 | bool LoadExec(u32 entry_point); | ||
| 291 | |||
| 292 | } // namespace | 288 | } // namespace |