| 12345678910111213141516171819202122 |
- // Copyright 2018 yuzu emulator team
- // Licensed under GPLv2 or any later version
- // Refer to the license.txt file included.
- #include "core/hle/service/acc/acc_aa.h"
- namespace Service {
- namespace Account {
- ACC_AA::ACC_AA(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:aa") {
- static const FunctionInfo functions[] = {
- {0, nullptr, "EnsureCacheAsync"},
- {1, nullptr, "LoadCache"},
- {2, nullptr, "GetDeviceAccountId"},
- {50, nullptr, "RegisterNotificationTokenAsync"},
- {51, nullptr, "UnregisterNotificationTokenAsync"},
- };
- RegisterHandlers(functions);
- }
- } // namespace Account
- } // namespace Service
|