MissionControl/btdrv-mitm/source/bluetooth/bluetooth_events.hpp

22 lines
438 B
C++
Raw Normal View History

#pragma once
#include <stratosphere.hpp>
#include "bluetooth_core.hpp"
#include "bluetooth_hid.hpp"
#include "bluetooth_hid_report.hpp"
#include "bluetooth_ble.hpp"
namespace ams::bluetooth::events {
enum BtdrvEventType {
2020-07-07 19:26:29 +00:00
//BtdrvEventType_PscPm,
BtdrvEventType_BluetoothCore,
BtdrvEventType_BluetoothHid,
BtdrvEventType_BluetoothBle,
};
Result Initialize(void);
void Finalize(void);
}