2020-05-04 17:29:48 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
extern UINT WM_PRIV_MOVESIZESTART;
|
|
|
|
|
extern UINT WM_PRIV_MOVESIZEEND;
|
|
|
|
|
extern UINT WM_PRIV_LOCATIONCHANGE;
|
|
|
|
|
extern UINT WM_PRIV_NAMECHANGE;
|
|
|
|
|
extern UINT WM_PRIV_WINDOWCREATED;
|
2021-07-07 13:18:52 +03:00
|
|
|
extern UINT WM_PRIV_VD_INIT; // Scheduled when FancyZones is initialized
|
|
|
|
|
extern UINT WM_PRIV_VD_SWITCH; // Scheduled when virtual desktop switch occurs
|
|
|
|
|
extern UINT WM_PRIV_VD_UPDATE; // Scheduled on virtual desktops update (creation/deletion)
|
|
|
|
|
extern UINT WM_PRIV_EDITOR; // Scheduled when the editor exits
|
2022-01-17 11:50:24 +03:00
|
|
|
extern UINT WM_PRIV_LAYOUT_HOTKEYS_FILE_UPDATE; // Scheduled when the watched layout-hotkeys.json file is updated
|
2022-01-27 15:21:15 +03:00
|
|
|
extern UINT WM_PRIV_LAYOUT_TEMPLATES_FILE_UPDATE; // Scheduled when the watched layout-templates.json file is updated
|
2022-01-20 14:02:38 +03:00
|
|
|
extern UINT WM_PRIV_CUSTOM_LAYOUTS_FILE_UPDATE; // Scheduled when the watched custom-layouts.json file is updated
|
2022-01-27 15:21:15 +03:00
|
|
|
extern UINT WM_PRIV_APPLIED_LAYOUTS_FILE_UPDATE; // Scheduled when the watched applied-layouts.json file is updated
|
2022-10-25 17:55:36 +02:00
|
|
|
extern UINT WM_PRIV_DEFAULT_LAYOUTS_FILE_UPDATE; // Scheduled when the watched default-layouts.json file is updated
|
2021-07-07 13:18:52 +03:00
|
|
|
extern UINT WM_PRIV_SNAP_HOTKEY; // Scheduled when we receive a snap hotkey key down press
|
|
|
|
|
extern UINT WM_PRIV_QUICK_LAYOUT_KEY; // Scheduled when we receive a key down press to quickly apply a layout
|
|
|
|
|
extern UINT WM_PRIV_SETTINGS_CHANGED; // Scheduled when the a watched settings file is updated
|
2020-05-04 17:29:48 +03:00
|
|
|
|
2020-05-04 21:10:23 +03:00
|
|
|
void InitializeWinhookEventIds();
|