mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-30 14:17:56 +08:00
9 lines
207 B
C++
9 lines
207 B
C++
|
#include "pch.h"
|
||
|
#include "GenericKeyHook.h"
|
||
|
|
||
|
HHOOK ShiftKeyHook::hHook{};
|
||
|
std::function<void(bool)> ShiftKeyHook::callback{};
|
||
|
|
||
|
HHOOK CtrlKeyHook::hHook{};
|
||
|
std::function<void(bool)> CtrlKeyHook::callback{};
|