mirror of
https://github.com/ndeadly/MissionControl
synced 2024-11-23 21:03:16 +00:00
14 lines
281 B
C++
14 lines
281 B
C++
#pragma once
|
|
#include <switch.h>
|
|
#include <stratosphere.hpp>
|
|
|
|
namespace ams::mitm::btdrv {
|
|
|
|
psc::PmModule *GetPscPmModule(void);
|
|
Result InitializePscPmModule(void);
|
|
void FinalizePscPmModule(void);
|
|
Result StartPscPmThread(void);
|
|
|
|
void HandlePscPmEvent(void);
|
|
|
|
}
|