summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets/profile_select.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-03-29 04:55:06 +0200
committergerman77 <juangerman-13@hotmail.com>2023-03-29 16:53:19 +0200
commit668eb5b8dad656c281c218ea8b4c34965b163b93 (patch)
tree5bbe7344abb001909ee32e7dd9422b1a91c72f9d /src/core/frontend/applets/profile_select.h
parentMerge pull request #9505 from liamwhite/request-exit (diff)
downloadyuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar.gz
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar.bz2
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar.lz
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar.xz
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.tar.zst
yuzu-668eb5b8dad656c281c218ea8b4c34965b163b93.zip
Diffstat (limited to 'src/core/frontend/applets/profile_select.h')
-rw-r--r--src/core/frontend/applets/profile_select.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/src/core/frontend/applets/profile_select.h b/src/core/frontend/applets/profile_select.h
index 76e963535..92e2737ea 100644
--- a/src/core/frontend/applets/profile_select.h
+++ b/src/core/frontend/applets/profile_select.h
@@ -5,25 +5,35 @@
#include <functional>
#include <optional>
-#include "common/uuid.h"
+#include "common/uuid.h"
#include "core/frontend/applets/applet.h"
+#include "core/hle/service/am/applets/applet_profile_select.h"
namespace Core::Frontend {
+struct ProfileSelectParameters {
+ Service::AM::Applets::UiMode mode;
+ std::array<Common::UUID, 8> invalid_uid_list;
+ Service::AM::Applets::UiSettingsDisplayOptions display_options;
+ Service::AM::Applets::UserSelectionPurpose purpose;
+};
+
class ProfileSelectApplet : public Applet {
public:
using SelectProfileCallback = std::function<void(std::optional<Common::UUID>)>;
virtual ~ProfileSelectApplet();
- virtual void SelectProfile(SelectProfileCallback callback) const = 0;
+ virtual void SelectProfile(SelectProfileCallback callback,
+ const ProfileSelectParameters& parameters) const = 0;
};
class DefaultProfileSelectApplet final : public ProfileSelectApplet {
public:
void Close() const override;
- void SelectProfile(SelectProfileCallback callback) const override;
+ void SelectProfile(SelectProfileCallback callback,
+ const ProfileSelectParameters& parameters) const override;
};
} // namespace Core::Frontend