SceneSwitcher/plugins/base/utils/osx/osx.mm
WarmUpTill f706416df5
Some checks failed
debian-build / build (push) Has been cancelled
Push to master / Check Formatting 🔍 (push) Has been cancelled
Push to master / Build Project 🧱 (push) Has been cancelled
Push to master / Create Release 🛫 (push) Has been cancelled
Fix warnings
2025-12-21 14:33:08 +01:00

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