mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01:00
* rename dll -> FancyZonesModuleInterface (#11488) * [FancyZones] Rename "fancyzones/tests" -> "fancyzones/FancyZonesTests" (#11492) * [FancyZones] Rename "fancyzones/lib" -> "fancyzones/FancyZonesLib" (#11489) * [FancyZones] New FancyZones project. (#11544) * [FancyZones] Allow single instance of "PowerToys.FancyZones.exe" (#11558) * [FancyZones] Updated bug reports (#11571) * [FancyZones] Updated installer (#11572) * [FancyZones] Update string resources (#11596) * [FancyZones] Terminate FancyZones with runner (#11696) * [FancyZones] Drop support for the module interface API to save settings (#11661) * Settings telemetry for FancyZones (#11766) * commented out test * enable dpi awareness for the process
25 lines
807 B
C++
25 lines
807 B
C++
#include "pch.h"
|
|
|
|
#include <mutex>
|
|
|
|
#include "FancyZonesWinHookEventIDs.h"
|
|
|
|
UINT WM_PRIV_MOVESIZESTART;
|
|
UINT WM_PRIV_MOVESIZEEND;
|
|
UINT WM_PRIV_LOCATIONCHANGE;
|
|
UINT WM_PRIV_NAMECHANGE;
|
|
UINT WM_PRIV_WINDOWCREATED;
|
|
|
|
std::once_flag init_flag;
|
|
|
|
void InitializeWinhookEventIds()
|
|
{
|
|
std::call_once(init_flag, [&] {
|
|
WM_PRIV_MOVESIZESTART = RegisterWindowMessage(L"{f48def23-df42-4c0f-a13d-3eb4a9e204d4}");
|
|
WM_PRIV_MOVESIZEEND = RegisterWindowMessage(L"{805d643c-804d-4728-b533-907d760ebaf0}");
|
|
WM_PRIV_LOCATIONCHANGE = RegisterWindowMessage(L"{d56c5ee7-58e5-481c-8c4f-8844cf4d0347}");
|
|
WM_PRIV_NAMECHANGE = RegisterWindowMessage(L"{b7b30c61-bfa0-4d95-bcde-fc4f2cbf6d76}");
|
|
WM_PRIV_WINDOWCREATED = RegisterWindowMessage(L"{bdb10669-75da-480a-9ec4-eeebf09a02d7}");
|
|
});
|
|
}
|