2020-06-13 00:08:43 +00:00
|
|
|
#pragma once
|
2020-06-13 17:15:59 +00:00
|
|
|
#include <stratosphere.hpp>
|
2020-06-13 00:08:43 +00:00
|
|
|
|
2020-06-13 19:27:07 +00:00
|
|
|
#include "bluetooth_core.hpp"
|
|
|
|
#include "bluetooth_hid.hpp"
|
|
|
|
#include "bluetooth_hid_report.hpp"
|
|
|
|
#include "bluetooth_ble.hpp"
|
2020-06-13 17:15:59 +00:00
|
|
|
|
|
|
|
namespace ams::bluetooth::events {
|
|
|
|
|
|
|
|
enum BtdrvEventType {
|
2020-07-07 19:26:29 +00:00
|
|
|
//BtdrvEventType_PscPm,
|
2020-06-13 17:15:59 +00:00
|
|
|
BtdrvEventType_BluetoothCore,
|
|
|
|
BtdrvEventType_BluetoothHid,
|
|
|
|
BtdrvEventType_BluetoothBle,
|
|
|
|
};
|
|
|
|
|
2020-06-22 21:14:54 +00:00
|
|
|
Result Initialize(void);
|
|
|
|
void Finalize(void);
|
2020-06-13 17:15:59 +00:00
|
|
|
|
|
|
|
}
|