acc_aa.cpp 679 B

12345678910111213141516171819202122
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/acc/acc_aa.h"
  5. namespace Service {
  6. namespace Account {
  7. ACC_AA::ACC_AA(std::shared_ptr<Module> module) : Module::Interface(std::move(module), "acc:aa") {
  8. static const FunctionInfo functions[] = {
  9. {0, nullptr, "EnsureCacheAsync"},
  10. {1, nullptr, "LoadCache"},
  11. {2, nullptr, "GetDeviceAccountId"},
  12. {50, nullptr, "RegisterNotificationTokenAsync"},
  13. {51, nullptr, "UnregisterNotificationTokenAsync"},
  14. };
  15. RegisterHandlers(functions);
  16. }
  17. } // namespace Account
  18. } // namespace Service