nim_u.cpp 837 B

123456789101112131415161718192021222324252627
  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_u.h"
  7. namespace Service {
  8. namespace NIM {
  9. const Interface::FunctionInfo FunctionTable[] = {
  10. {0x00010000, nullptr, "StartSysUpdate"},
  11. {0x00020000, nullptr, "GetUpdateDownloadProgress"},
  12. {0x00040000, nullptr, "FinishTitlesInstall"},
  13. {0x00050000, nullptr, "CheckForSysUpdateEvent"},
  14. {0x00090000, CheckSysUpdateAvailable, "CheckSysUpdateAvailable"},
  15. {0x000A0000, nullptr, "GetState"},
  16. };
  17. NIM_U_Interface::NIM_U_Interface() {
  18. Register(FunctionTable);
  19. }
  20. } // namespace NIM
  21. } // namespace Service