mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
13 lines
408 B
C++
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);
|
|
|
|
}
|