summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.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/loader/loader.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/loader/loader.h')
-rw-r--r--src/core/loader/loader.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h
index 2b87239cf..bf027a878 100644
--- a/src/core/loader/loader.h
+++ b/src/core/loader/loader.h
@@ -9,6 +9,8 @@
9#include "common/common_types.h" 9#include "common/common_types.h"
10#include "common/file_util.h" 10#include "common/file_util.h"
11 11
12#include "core/hle/kernel/process.h"
13
12//////////////////////////////////////////////////////////////////////////////////////////////////// 14////////////////////////////////////////////////////////////////////////////////////////////////////
13// Loader namespace 15// Loader namespace
14 16
@@ -105,6 +107,12 @@ protected:
105}; 107};
106 108
107/** 109/**
110 * Common address mappings found in most games, used for binary formats that don't have this
111 * information.
112 */
113extern const std::initializer_list<Kernel::StaticAddressMapping> default_address_mappings;
114
115/**
108 * Identifies and loads a bootable file 116 * Identifies and loads a bootable file
109 * @param filename String filename of bootable file 117 * @param filename String filename of bootable file
110 * @return ResultStatus result of function 118 * @return ResultStatus result of function