mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 10:48:23 +08:00
14 lines
411 B
C
14 lines
411 B
C
|
#include "pch.h"
|
||
|
|
||
|
#include "../modules/interface/powertoy_module_interface.h"
|
||
|
|
||
|
namespace CentralizedKeyboardHook
|
||
|
{
|
||
|
using Hotkey = PowertoyModuleIface::Hotkey;
|
||
|
|
||
|
void Start() noexcept;
|
||
|
void Stop() noexcept;
|
||
|
void SetHotkeyAction(const std::wstring& moduleName, const Hotkey& hotkey, std::function<bool()>&& action) noexcept;
|
||
|
void ClearModuleHotkeys(const std::wstring& moduleName) noexcept;
|
||
|
};
|