MissionControl/btdrv-mitm/source/controllermanager.hpp

13 lines
408 B
C++

#pragma once
#include <switch.h>
#include "controllers/bluetoothcontroller.hpp"
namespace ams::mitm::btdrv {
controller::ControllerType identifyController(uint16_t vid, uint16_t pid);
controller::BluetoothController *locateController(const BluetoothAddress *address);
void attachDeviceHandler(const BluetoothAddress *address);
void removeDeviceHandler(const BluetoothAddress *address);
}