#ifndef _NTUSER_H
// Send to the window registered with NtUserRegisterCloakedNotification
// when cloak state of the window has changed
// wParam - if window cloak state changed contains cloaking value
// which can be one/all of the below
// DWM_CLOAKED_APP(0x0000001).The window was cloaked by its owner application.
// DWM_CLOAKED_SHELL(0x0000002).The window was cloaked by the Shell.
// 0 - window is not cloaked
//
// lParam - 0 (unused)
//
#define WM_CLOAKED_STATE_CHANGED 0x0347
View code on GitHubNo description available.