mirror of
https://github.com/WarmUpTill/SceneSwitcher.git
synced 2026-03-22 01:44:49 -05:00
19 lines
274 B
Plaintext
19 lines
274 B
Plaintext
#include "hotkey-helpers.hpp"
|
|
|
|
namespace advss {
|
|
|
|
static bool canSimulateKeyPresses = false;
|
|
|
|
bool CanSimulateKeyPresses()
|
|
{
|
|
return canSimulateKeyPresses;
|
|
}
|
|
|
|
void PressKeys(const std::vector<HotkeyType> &, int)
|
|
{
|
|
// Not supported on MacOS
|
|
return;
|
|
}
|
|
|
|
} // namespace advss
|