summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-04 00:01:16 -0300
committerGravatar Yuri Kunde Schlesner2015-05-08 22:11:02 -0300
commit6d60acf0f1afcae873988da5218f2f1c7bc9d151 (patch)
treecec75198ab74759002dd1da78f6ac2af5e61949f /src/core/hle/kernel/kernel.h
parentCommon: Add StringFromFixedZeroTerminatedBuffer (diff)
downloadyuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.tar.gz
yuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.tar.xz
yuzu-6d60acf0f1afcae873988da5218f2f1c7bc9d151.zip
Kernel: Introduce skeleton Process class to hold process data
Diffstat (limited to 'src/core/hle/kernel/kernel.h')
-rw-r--r--src/core/hle/kernel/kernel.h10
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
19struct ApplicationInfo;
20
18namespace Kernel { 21namespace Kernel {
19 22
20class Thread; 23class Thread;
@@ -282,11 +285,4 @@ void Init();
282/// Shutdown the kernel 285/// Shutdown the kernel
283void Shutdown(); 286void 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 */
290bool LoadExec(u32 entry_point);
291
292} // namespace 288} // namespace