nim_aoc.cpp 1.0 KB

123456789101112131415161718192021222324252627282930
  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_aoc.h"
  6. ////////////////////////////////////////////////////////////////////////////////////////////////////
  7. // Namespace NIM_AOC
  8. namespace NIM_AOC {
  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. ////////////////////////////////////////////////////////////////////////////////////////////////////
  20. // Interface class
  21. Interface::Interface() {
  22. Register(FunctionTable);
  23. }
  24. } // namespace