mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-25 18:18:16 +08:00
25 lines
810 B
C++
25 lines
810 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 initialize_winhook_event_ids()
|
||
|
{
|
||
|
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}");
|
||
|
});
|
||
|
}
|