nim_aoc.cpp 930 B

12345678910111213141516171819202122232425262728
  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/hle.h"
  5. #include "core/hle/service/nim/nim.h"
  6. #include "core/hle/service/nim/nim_aoc.h"
  7. namespace Service {
  8. namespace NIM {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x00030042, nullptr, "SetApplicationId"},
  11. {0x00040042, nullptr, "SetTin"},
  12. {0x000902D0, nullptr, "ListContentSetsEx"},
  13. {0x00180000, nullptr, "GetBalance"},
  14. {0x001D0000, nullptr, "GetCustomerSupportCode"},
  15. {0x00210000, nullptr, "Initialize"},
  16. {0x00240282, nullptr, "CalculateContentsRequiredSize"},
  17. {0x00250000, nullptr, "RefreshServerTime"},
  18. };
  19. NIM_AOC_Interface::NIM_AOC_Interface() {
  20. Register(FunctionTable);
  21. }
  22. } // namespace NIM
  23. } // namespace Service