mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
19 lines
481 B
C++
19 lines
481 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::bluetooth::core {
|
|
|
|
bool IsInitialized(void);
|
|
|
|
os::SystemEventType *GetSystemEvent(void);
|
|
os::SystemEventType *GetForwardEvent(void);
|
|
os::SystemEventType *GetUserForwardEvent(void);
|
|
|
|
Result Initialize(Handle eventHandle);
|
|
void Finalize(void);
|
|
|
|
Result GetEventInfo(ncm::ProgramId program_id, BluetoothEventType *type, u8* buffer, size_t size);
|
|
void HandleEvent(void);
|
|
|
|
}
|