diff --git a/PInvoke/User32/WinUser.Gdi.cs b/PInvoke/User32/WinUser.Gdi.cs index 66898904..120f5879 100644 --- a/PInvoke/User32/WinUser.Gdi.cs +++ b/PInvoke/User32/WinUser.Gdi.cs @@ -292,6 +292,10 @@ namespace Vanara.PInvoke [CorrespondingType(typeof(HINSTANCE))] GWL_HINSTANCE = -6, + /// The application instance handle + [CorrespondingType(typeof(HINSTANCE))] + GWLP_HINSTANCE = -6, + /// The parent window handle [CorrespondingType(typeof(HWND), CorrespondingAction.Get)] GWL_HWNDPARENT = -8, @@ -300,6 +304,10 @@ namespace Vanara.PInvoke [CorrespondingType(typeof(int))] GWL_ID = -12, + /// The window identifier + [CorrespondingType(typeof(int))] + GWLP_ID = -12, + /// The window styles [CorrespondingType(typeof(WindowStyles))] GWL_STYLE = -16, @@ -307,10 +315,17 @@ namespace Vanara.PInvoke /// The window user data GWL_USERDATA = -21, + /// The window user data + GWLP_USERDATA = -21, + /// The window procedure address or handle [CorrespondingType(typeof(WindowProc))] GWL_WNDPROC = -4, + /// The window procedure address or handle + [CorrespondingType(typeof(WindowProc))] + GWLP_WNDPROC = -4, + /// The dialog user data DWLP_USER = 0x8, @@ -320,6 +335,16 @@ namespace Vanara.PInvoke /// The dialog procedure address or handle [CorrespondingType(typeof(DialogProc))] DWLP_DLGPROC = 0x4 + + /// The dialog user data + DWL_USER = 0x8, + + /// The dialog procedure message result + DWL_MSGRESULT = 0x0, + + /// The dialog procedure address or handle + [CorrespondingType(typeof(DialogProc))] + DWL_DLGPROC = 0x4 } ///