mirror of
https://github.com/ndeadly/MissionControl
synced 2025-01-21 17:03:56 +00:00
24 lines
568 B
C++
24 lines
568 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::bluetooth::hid::report {
|
|
|
|
bool IsInitialized(void);
|
|
|
|
SharedMemory *GetRealSharedMemory(void);
|
|
SharedMemory *GetFakeSharedMemory(void);
|
|
|
|
os::SystemEventType *GetSystemEvent(void);
|
|
os::SystemEventType *GetForwardEvent(void);
|
|
os::SystemEventType *GetUserForwardEvent(void);
|
|
|
|
Result Initialize(Handle eventHandle);
|
|
void Finalize(void);
|
|
|
|
Result MapRemoteSharedMemory(Handle handle);
|
|
Result InitializeFakeSharedMemory(void);
|
|
|
|
void HandleEvent(void);
|
|
|
|
}
|