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