From 952c6cebe15d083fef392d5296e6a35ff0410e97 Mon Sep 17 00:00:00 2001 From: dahall Date: Fri, 18 Dec 2020 17:49:12 -0700 Subject: [PATCH] Added HWND.HWND_MESSAGE value --- PInvoke/Shared/Handles.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PInvoke/Shared/Handles.cs b/PInvoke/Shared/Handles.cs index 0c074840..2699081a 100644 --- a/PInvoke/Shared/Handles.cs +++ b/PInvoke/Shared/Handles.cs @@ -1980,6 +1980,9 @@ namespace Vanara.PInvoke /// public static HWND HWND_BOTTOM = new IntPtr(1); + /// Use as parent in CreateWindow or CreateWindowEx call to indicate a message-only window. + public static HWND HWND_MESSAGE = new IntPtr(-3); + /// /// Places the window above all non-topmost windows (that is, behind all topmost windows). This flag has no effect if the window /// is already a non-topmost window.