summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/acc/acc.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-04-10 09:18:52 +0200
committermailwl <mailwl@gmail.com>2018-04-10 09:18:52 +0200
commit3769a80faca76c7ed77540607fef03ef26b28501 (patch)
tree7ef4349f360eafd9ed9bbcbfeefb29969be4e324 /src/core/hle/service/acc/acc.h
parentMerge pull request #314 from jroweboy/tegra-progress-3b (diff)
downloadyuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar.gz
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar.bz2
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar.lz
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar.xz
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.tar.zst
yuzu-3769a80faca76c7ed77540607fef03ef26b28501.zip
Diffstat (limited to 'src/core/hle/service/acc/acc.h')
-rw-r--r--src/core/hle/service/acc/acc.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/core/hle/service/acc/acc.h b/src/core/hle/service/acc/acc.h
index 44d024f48..2d2f57b7d 100644
--- a/src/core/hle/service/acc/acc.h
+++ b/src/core/hle/service/acc/acc.h
@@ -9,6 +9,25 @@
namespace Service {
namespace Account {
+class Module final {
+public:
+ class Interface : public ServiceFramework<Interface> {
+ public:
+ Interface(std::shared_ptr<Module> module, const char* name);
+
+ void GetUserExistence(Kernel::HLERequestContext& ctx);
+ void ListAllUsers(Kernel::HLERequestContext& ctx);
+ void ListOpenUsers(Kernel::HLERequestContext& ctx);
+ void GetLastOpenedUser(Kernel::HLERequestContext& ctx);
+ void GetProfile(Kernel::HLERequestContext& ctx);
+ void InitializeApplicationInfo(Kernel::HLERequestContext& ctx);
+ void GetBaasAccountManagerForApplication(Kernel::HLERequestContext& ctx);
+
+ protected:
+ std::shared_ptr<Module> module;
+ };
+};
+
/// Registers all ACC services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);