tcap.cpp 603 B

1234567891011121314151617181920212223
  1. // Copyright 2018 yuzu emulator team
  2. // Licensed under GPLv2 or any later version
  3. // Refer to the license.txt file included.
  4. #include "core/hle/service/am/tcap.h"
  5. namespace Service::AM {
  6. TCAP::TCAP(Core::System& system_) : ServiceFramework{system_, "tcap"} {
  7. // clang-format off
  8. static const FunctionInfo functions[] = {
  9. {0, nullptr, "GetContinuousHighSkinTemperatureEvent"},
  10. {1, nullptr, "SetOperationMode"},
  11. {2, nullptr, "LoadAndApplySettings"},
  12. };
  13. // clang-format on
  14. RegisterHandlers(functions);
  15. }
  16. TCAP::~TCAP() = default;
  17. } // namespace Service::AM