2020-08-25 19:23:38 +00:00
|
|
|
/*
|
2021-01-26 03:03:26 +00:00
|
|
|
* Copyright (c) 2020-2021 ndeadly
|
2020-08-25 19:23:38 +00:00
|
|
|
*
|
2020-08-26 22:50:34 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
2020-08-25 19:23:38 +00:00
|
|
|
*
|
2020-08-26 22:50:34 +00:00
|
|
|
* This program is distributed in the hope 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.
|
2020-08-25 19:23:38 +00:00
|
|
|
*
|
|
|
|
* 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 00:08:43 +00:00
|
|
|
#include "btdrv_mitm_flags.hpp"
|
|
|
|
|
2020-07-11 19:08:32 +00:00
|
|
|
namespace ams {
|
|
|
|
|
2020-08-26 18:52:47 +00: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 19:08:32 +00:00
|
|
|
|
|
|
|
}
|