cabinet.cpp 614 B

12345678910111213141516171819202122
  1. // SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #include "common/logging/log.h"
  4. #include "core/frontend/applets/cabinet.h"
  5. #include <thread>
  6. namespace Core::Frontend {
  7. CabinetApplet::~CabinetApplet() = default;
  8. void DefaultCabinetApplet::Close() const {}
  9. void DefaultCabinetApplet::ShowCabinetApplet(
  10. const CabinetCallback& callback, const CabinetParameters& parameters,
  11. std::shared_ptr<Service::NFC::NfcDevice> nfp_device) const {
  12. LOG_WARNING(Service_AM, "(STUBBED) called");
  13. callback(false, {});
  14. }
  15. } // namespace Core::Frontend