mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-21 07:17:56 +08:00
412d80efe3
* Started work * Did something, not yet sure that it works * Sort of works * Cleari highlighted zones when using Ctrl after leaving a monitor * Remove unnecessary line * Enhanced UX. Maybe refactor? * Changed the logic behind zone selection when dragging * Various fixups
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{};
|