summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
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..a56f67205 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::AddressMapping> 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