mirror of
https://github.com/ndeadly/MissionControl
synced 2025-01-09 19:18:50 +00:00
20 lines
406 B
C++
20 lines
406 B
C++
#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 {
|
|
BtdrvEventType_BluetoothCore,
|
|
BtdrvEventType_BluetoothHid,
|
|
BtdrvEventType_BluetoothBle,
|
|
};
|
|
|
|
Result Initialize(void);
|
|
void Finalize(void);
|
|
|
|
}
|