ptm_play.cpp 634 B

12345678910111213141516171819202122
  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/service/ptm/ptm_play.h"
  5. namespace Service {
  6. namespace PTM {
  7. const Interface::FunctionInfo FunctionTable[] = {
  8. {0x08070082, nullptr, "GetPlayHistory"},
  9. {0x08080000, nullptr, "GetPlayHistoryStart"},
  10. {0x08090000, nullptr, "GetPlayHistoryLength"},
  11. {0x080B0080, nullptr, "CalcPlayHistoryStart"},
  12. };
  13. PTM_Play_Interface::PTM_Play_Interface() {
  14. Register(FunctionTable);
  15. }
  16. } // namespace PTM
  17. } // namespace Service