diff options
| author | 2023-12-31 09:40:32 -0500 | |
|---|---|---|
| committer | 2024-01-29 18:43:45 -0500 | |
| commit | dfb9fa0144ca79e596f6f2b1bc960b1a44745aa6 (patch) | |
| tree | b90633109392383feaa8420e984c40c9a1799903 /src/core/core.h | |
| parent | am: add new datatypes for per-applet state (diff) | |
| download | yuzu-dfb9fa0144ca79e596f6f2b1bc960b1a44745aa6.tar.gz yuzu-dfb9fa0144ca79e596f6f2b1bc960b1a44745aa6.tar.xz yuzu-dfb9fa0144ca79e596f6f2b1bc960b1a44745aa6.zip | |
am: re-namespace frontend applets to frontend directory
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/core/core.h b/src/core/core.h index d8862e9ce..800e69501 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -50,10 +50,10 @@ namespace Account { | |||
| 50 | class ProfileManager; | 50 | class ProfileManager; |
| 51 | } // namespace Account | 51 | } // namespace Account |
| 52 | 52 | ||
| 53 | namespace AM::Applets { | 53 | namespace AM::Frontend { |
| 54 | struct AppletFrontendSet; | 54 | struct FrontendAppletSet; |
| 55 | class AppletManager; | 55 | class FrontendAppletHolder; |
| 56 | } // namespace AM::Applets | 56 | } // namespace AM::Frontend |
| 57 | 57 | ||
| 58 | namespace APM { | 58 | namespace APM { |
| 59 | class Controller; | 59 | class Controller; |
| @@ -344,11 +344,12 @@ public: | |||
| 344 | const std::array<u8, 0x20>& build_id, u64 main_region_begin, | 344 | const std::array<u8, 0x20>& build_id, u64 main_region_begin, |
| 345 | u64 main_region_size); | 345 | u64 main_region_size); |
| 346 | 346 | ||
| 347 | void SetAppletFrontendSet(Service::AM::Applets::AppletFrontendSet&& set); | 347 | void SetFrontendAppletSet(Service::AM::Frontend::FrontendAppletSet&& set); |
| 348 | void SetDefaultAppletFrontendSet(); | 348 | void SetDefaultAppletFrontendSet(); |
| 349 | 349 | ||
| 350 | [[nodiscard]] Service::AM::Applets::AppletManager& GetAppletManager(); | 350 | [[nodiscard]] Service::AM::Frontend::FrontendAppletHolder& GetFrontendAppletHolder(); |
| 351 | [[nodiscard]] const Service::AM::Applets::AppletManager& GetAppletManager() const; | 351 | [[nodiscard]] const Service::AM::Frontend::FrontendAppletHolder& GetFrontendAppletHolder() |
| 352 | const; | ||
| 352 | 353 | ||
| 353 | void SetContentProvider(std::unique_ptr<FileSys::ContentProviderUnion> provider); | 354 | void SetContentProvider(std::unique_ptr<FileSys::ContentProviderUnion> provider); |
| 354 | 355 | ||