nim_s.cpp 711 B

12345678910111213141516171819202122232425
  1. // Copyright 2015 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_s.h"
  7. namespace Service {
  8. namespace NIM {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x000A0000, nullptr, "CheckSysupdateAvailableSOAP"},
  11. {0x0016020A, nullptr, "ListTitles"},
  12. {0x002D0042, nullptr, "DownloadTickets"},
  13. {0x00420240, nullptr, "StartDownload"},
  14. };
  15. NIM_S_Interface::NIM_S_Interface() {
  16. Register(FunctionTable);
  17. }
  18. } // namespace NIM
  19. } // namespace Service