diff options
| author | 2015-05-08 21:20:37 -0400 | |
|---|---|---|
| committer | 2015-05-08 21:20:37 -0400 | |
| commit | 917ac23dfcab37c65e11e3413e397863bd4bc000 (patch) | |
| tree | 956ca5d1a4aad3383c4a3bfc9103476abe3f1987 /src/core/loader/loader.h | |
| parent | Merge pull request #728 from lioncash/vars (diff) | |
| parent | Kernel: Remove unused g_main_thread variable (diff) | |
| download | yuzu-917ac23dfcab37c65e11e3413e397863bd4bc000.tar.gz yuzu-917ac23dfcab37c65e11e3413e397863bd4bc000.tar.xz yuzu-917ac23dfcab37c65e11e3413e397863bd4bc000.zip | |
Merge pull request #731 from yuriks/app-info
Kernel: Process class and ExHeader caps parsing
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 8 |
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 | */ | ||
| 113 | extern 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 |