ptm_play.cpp 664 B

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