nim_aoc.cpp 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2014 Citra Emulator Project
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "common/log.h"
  5. #include "core/hle/hle.h"
  6. #include "core/hle/service/nim_aoc.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace NIM_AOC
  9. namespace NIM_AOC {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. {0x00030042, nullptr, "SetApplicationId"},
  12. {0x00040042, nullptr, "SetTin"},
  13. {0x000902D0, nullptr, "ListContentSetsEx"},
  14. {0x00180000, nullptr, "GetBalance"},
  15. {0x001D0000, nullptr, "GetCustomerSupportCode"},
  16. {0x00210000, nullptr, "Initialize"},
  17. {0x00240282, nullptr, "CalculateContentsRequiredSize"},
  18. {0x00250000, nullptr, "RefreshServerTime"},
  19. };
  20. ////////////////////////////////////////////////////////////////////////////////////////////////////
  21. // Interface class
  22. Interface::Interface() {
  23. Register(FunctionTable, ARRAY_SIZE(FunctionTable));
  24. }
  25. } // namespace