act_u.cpp 661 B

1234567891011121314151617181920212223242526
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/act/act.h"
  5. #include "core/hle/service/act/act_u.h"
  6. namespace Service {
  7. namespace ACT {
  8. const Interface::FunctionInfo FunctionTable[] = {
  9. // clang-format off
  10. {0x00010084, nullptr, "Initialize"},
  11. {0x00020040, nullptr, "GetErrorCode"},
  12. {0x000600C2, nullptr, "GetAccountDataBlock"},
  13. {0x000B0042, nullptr, "AcquireEulaList"},
  14. {0x000D0040, nullptr, "GenerateUuid"},
  15. // clang-format on
  16. };
  17. ACT_U::ACT_U() {
  18. Register(FunctionTable);
  19. }
  20. } // namespace ACT
  21. } // namespace Service