MissionControl/mc_mitm/source/bluetooth_mitm/btdrv_mitm_flags.hpp

27 lines
906 B
C++
Raw Normal View History

/*
2021-01-26 03:03:26 +00:00
* Copyright (c) 2020-2021 ndeadly
*
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-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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
#include <atomic>
namespace ams {
2020-08-26 18:52:47 +00:00
extern std::atomic<bool> g_redirect_core_events;
extern std::atomic<bool> g_redirect_hid_events;
extern std::atomic<bool> g_redirect_hid_report_events;
extern std::atomic<bool> g_redirect_ble_events;
}