diff options
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core/core.h b/src/core/core.h index 2944b09cd..d98b15a71 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -22,9 +22,12 @@ | |||
| 22 | #include "video_core/debug_utils/debug_utils.h" | 22 | #include "video_core/debug_utils/debug_utils.h" |
| 23 | #include "video_core/gpu.h" | 23 | #include "video_core/gpu.h" |
| 24 | 24 | ||
| 25 | class EmuWindow; | ||
| 26 | class ARM_Interface; | 25 | class ARM_Interface; |
| 27 | 26 | ||
| 27 | namespace Core::Frontend { | ||
| 28 | class EmuWindow; | ||
| 29 | } | ||
| 30 | |||
| 28 | namespace Service::SM { | 31 | namespace Service::SM { |
| 29 | class ServiceManager; | 32 | class ServiceManager; |
| 30 | } | 33 | } |
| @@ -99,7 +102,7 @@ public: | |||
| 99 | * @param filepath String path to the executable application to load on the host file system. | 102 | * @param filepath String path to the executable application to load on the host file system. |
| 100 | * @returns ResultStatus code, indicating if the operation succeeded. | 103 | * @returns ResultStatus code, indicating if the operation succeeded. |
| 101 | */ | 104 | */ |
| 102 | ResultStatus Load(EmuWindow& emu_window, const std::string& filepath); | 105 | ResultStatus Load(Frontend::EmuWindow& emu_window, const std::string& filepath); |
| 103 | 106 | ||
| 104 | /** | 107 | /** |
| 105 | * Indicates if the emulated system is powered on (all subsystems initialized and able to run an | 108 | * Indicates if the emulated system is powered on (all subsystems initialized and able to run an |
| @@ -227,7 +230,7 @@ private: | |||
| 227 | * input. | 230 | * input. |
| 228 | * @return ResultStatus code, indicating if the operation succeeded. | 231 | * @return ResultStatus code, indicating if the operation succeeded. |
| 229 | */ | 232 | */ |
| 230 | ResultStatus Init(EmuWindow& emu_window); | 233 | ResultStatus Init(Frontend::EmuWindow& emu_window); |
| 231 | 234 | ||
| 232 | /// RealVfsFilesystem instance | 235 | /// RealVfsFilesystem instance |
| 233 | FileSys::VirtualFilesystem virtual_filesystem; | 236 | FileSys::VirtualFilesystem virtual_filesystem; |