diff options
| author | 2021-05-07 23:30:17 -0700 | |
|---|---|---|
| committer | 2021-05-07 23:30:17 -0700 | |
| commit | faa067f175cbf5e916ed75776817f0046e6731c4 (patch) | |
| tree | 8ab02a72a6e4d6578848c8da2c02af02684aeec7 /src/core/loader/loader.h | |
| parent | Merge pull request #6287 from lioncash/ldr-copy (diff) | |
| parent | hle: kernel: KPageTable: CanContain should not be constexpr. (diff) | |
| download | yuzu-faa067f175cbf5e916ed75776817f0046e6731c4.tar.gz yuzu-faa067f175cbf5e916ed75776817f0046e6731c4.tar.xz yuzu-faa067f175cbf5e916ed75776817f0046e6731c4.zip | |
Merge pull request #6266 from bunnei/kautoobject-refactor
Kernel Rework: Migrate kernel objects to KAutoObject
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index bf6db1ab1..9eac11dec 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -25,7 +25,7 @@ class NACP; | |||
| 25 | 25 | ||
| 26 | namespace Kernel { | 26 | namespace Kernel { |
| 27 | struct AddressMapping; | 27 | struct AddressMapping; |
| 28 | class Process; | 28 | class KProcess; |
| 29 | } // namespace Kernel | 29 | } // namespace Kernel |
| 30 | 30 | ||
| 31 | namespace Loader { | 31 | namespace Loader { |
| @@ -165,7 +165,7 @@ public: | |||
| 165 | * | 165 | * |
| 166 | * @return The status result of the operation. | 166 | * @return The status result of the operation. |
| 167 | */ | 167 | */ |
| 168 | virtual LoadResult Load(Kernel::Process& process, Core::System& system) = 0; | 168 | virtual LoadResult Load(Kernel::KProcess& process, Core::System& system) = 0; |
| 169 | 169 | ||
| 170 | /** | 170 | /** |
| 171 | * Get the code (typically .code section) of the application | 171 | * Get the code (typically .code section) of the application |