2020-08-25 21:23:38 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 ndeadly
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2020-06-13 02:08:43 +02:00
|
|
|
#include "btdrv_mitm_flags.hpp"
|
|
|
|
|
2020-07-11 21:08:32 +02:00
|
|
|
namespace ams {
|
|
|
|
|
2020-08-26 20:52:47 +02:00
|
|
|
std::atomic<bool> g_redirect_core_events = false;
|
|
|
|
std::atomic<bool> g_redirect_hid_events = false;
|
|
|
|
std::atomic<bool> g_redirect_hid_report_events = false;
|
|
|
|
std::atomic<bool> g_redirect_ble_events = false;
|
2020-07-11 21:08:32 +02:00
|
|
|
|
|
|
|
}
|