mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-19 12:48:57 +02:00
25 lines
720 B
C++
25 lines
720 B
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "common/logging.h"
|
|
#include "core/frontend/applets/cabinet.h"
|
|
|
|
#include <thread>
|
|
|
|
namespace Core::Frontend {
|
|
|
|
CabinetApplet::~CabinetApplet() = default;
|
|
|
|
void DefaultCabinetApplet::Close() const {}
|
|
|
|
void DefaultCabinetApplet::ShowCabinetApplet(
|
|
const CabinetCallback& callback, const CabinetParameters& parameters,
|
|
std::shared_ptr<Service::NFC::NfcDevice> nfp_device) const {
|
|
LOG_WARNING(Service_AM, "(STUBBED) called");
|
|
callback(false, {});
|
|
}
|
|
|
|
} // namespace Core::Frontend
|