diff --git a/PInvoke/Shared/Handles.cs b/PInvoke/Shared/Handles.cs index 1454f7fd..160a3de4 100644 --- a/PInvoke/Shared/Handles.cs +++ b/PInvoke/Shared/Handles.cs @@ -1980,6 +1980,12 @@ namespace Vanara.PInvoke /// public static HWND HWND_BOTTOM = new IntPtr(1); + /// + /// Used by SendMessage and PostMessage to send a message to all top-level windows in the system, including disabled or + /// invisible unowned windows, overlapped windows, and pop-up windows; but the message is not sent to child windows. + /// + public static HWND HWND_BROADCAST = new IntPtr(0xffff); + /// Use as parent in CreateWindow or CreateWindowEx call to indicate a message-only window. public static HWND HWND_MESSAGE = new IntPtr(-3);