/
githubmirror
/
yuzu
Обзор
Документация
Войти
/
githubmirror
/
yuzu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/core/frontend/applets/cabinet.cpp
22 строки
614 B
Narr the Reg
service: nfc: Merge device interfaces and create the device manager
06 май 2023, 07:02
06 май 2023, 07:02
9415109
Код
Авторство
О чём код?
// SPDX-FileCopyrightText: Copyright 2022 yuzu Emulator Project // SPDX-License-Identifier: GPL-2.0-or-later #include "common/logging/log.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