mirror of
https://github.com/ndeadly/MissionControl
synced 2025-01-09 03:08:41 +00:00
21 lines
438 B
C++
21 lines
438 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_PscPm,
|
|
BtdrvEventType_BluetoothCore,
|
|
BtdrvEventType_BluetoothHid,
|
|
BtdrvEventType_BluetoothBle,
|
|
};
|
|
|
|
Result Initialize(void);
|
|
void Finalize(void);
|
|
|
|
}
|