ptm_play.cpp 905 B

12345678910111213141516171819202122232425262728
  1. // Copyright 2015 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/ptm_play.h"
  7. ////////////////////////////////////////////////////////////////////////////////////////////////////
  8. // Namespace PTM_PLAY
  9. namespace PTM_PLAY {
  10. const Interface::FunctionInfo FunctionTable[] = {
  11. { 0x08070082, nullptr, "GetPlayHistory" },
  12. { 0x08080000, nullptr, "GetPlayHistoryStart" },
  13. { 0x08090000, nullptr, "GetPlayHistoryLength" },
  14. { 0x080B0080, nullptr, "CalcPlayHistoryStart" },
  15. };
  16. ////////////////////////////////////////////////////////////////////////////////////////////////////
  17. // Interface class
  18. Interface::Interface() {
  19. Register(FunctionTable, ARRAY_SIZE(FunctionTable));
  20. }
  21. } // namespace