diff options
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 38b3d4c99..002af1f60 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -44,7 +44,7 @@ public: | |||
| 44 | * Load the application | 44 | * Load the application |
| 45 | * @return ResultStatus result of function | 45 | * @return ResultStatus result of function |
| 46 | */ | 46 | */ |
| 47 | virtual const ResultStatus Load() = 0; | 47 | virtual ResultStatus Load() = 0; |
| 48 | 48 | ||
| 49 | /** | 49 | /** |
| 50 | * Get the code (typically .code section) of the application | 50 | * Get the code (typically .code section) of the application |
| @@ -109,13 +109,13 @@ protected: | |||
| 109 | * @param filename String filename of bootable file | 109 | * @param filename String filename of bootable file |
| 110 | * @return FileType of file | 110 | * @return FileType of file |
| 111 | */ | 111 | */ |
| 112 | const FileType IdentifyFile(const std::string &filename); | 112 | FileType IdentifyFile(const std::string &filename); |
| 113 | 113 | ||
| 114 | /** | 114 | /** |
| 115 | * Identifies and loads a bootable file | 115 | * Identifies and loads a bootable file |
| 116 | * @param filename String filename of bootable file | 116 | * @param filename String filename of bootable file |
| 117 | * @return ResultStatus result of function | 117 | * @return ResultStatus result of function |
| 118 | */ | 118 | */ |
| 119 | const ResultStatus LoadFile(std::string& filename); | 119 | ResultStatus LoadFile(const std::string& filename); |
| 120 | 120 | ||
| 121 | } // namespace | 121 | } // namespace |