mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 23:07:55 +08:00
15 lines
273 B
C++
15 lines
273 B
C++
|
#include "pch.h"
|
||
|
|
||
|
#include "WinHookEventIDs.h"
|
||
|
|
||
|
UINT WM_PRIV_SHORTCUT;
|
||
|
|
||
|
std::once_flag init_flag;
|
||
|
|
||
|
void InitializeWinhookEventIds()
|
||
|
{
|
||
|
std::call_once(init_flag, [&] {
|
||
|
WM_PRIV_SHORTCUT = RegisterWindowMessage(L"{1365FFC7-A44E-4171-9692-A3EEF378AE60}");
|
||
|
});
|
||
|
}
|