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