mirror of
https://github.com/ndeadly/MissionControl
synced 2024-12-18 00:23:12 +00:00
22 lines
546 B
C++
22 lines
546 B
C++
#pragma once
|
|
#include <stratosphere.hpp>
|
|
|
|
#include "bluetooth_core_events.hpp"
|
|
#include "bluetooth_hid_events.hpp"
|
|
#include "bluetooth_hid_report_events.hpp"
|
|
#include "bluetooth_ble_events.hpp"
|
|
|
|
namespace ams::bluetooth::events {
|
|
|
|
enum BtdrvEventType {
|
|
BtdrvEventType_PscPm,
|
|
BtdrvEventType_BluetoothCore,
|
|
BtdrvEventType_BluetoothHid,
|
|
BtdrvEventType_BluetoothBle,
|
|
};
|
|
|
|
void AttachWaitHolder(BtdrvEventType type);
|
|
Result InitializeSystemEvents(void);
|
|
Result StartEventHandlerThread(void);
|
|
|
|
}
|