mirror of
https://github.com/ndeadly/MissionControl
synced 2024-12-18 00:23:12 +00:00
16 lines
356 B
C++
16 lines
356 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::bluetooth::ble {
|
|
|
|
void HandleEvent(void);
|
|
|
|
os::SystemEventType *GetSystemEvent(void);
|
|
os::SystemEventType *GetForwardEvent(void);
|
|
os::SystemEventType *GetUserForwardEvent(void);
|
|
|
|
Result InitializeEvents(void);
|
|
Result StartEventHandlerThread(void);
|
|
|
|
}
|