.
The AdjustWindowRect API
8/4/2022 12:42:08 AM - timur.kelman+pinvoke@gmail.com-79.193.218.180
.
static extern bool AdjustWindowRect(ref RECT lpRect, uint dwStyle, bool bMenu);
.
Public Function AdjustWindowRect(<MarshalAs(UnmanagedType.Struct)>ByRef lpRect As RECT, _
.
Public Declare Function AdjustWindowRect Lib "user32" _
.
.
.
The AdjustWindowRectEx API
12/30/2020 4:35:39 AM - semihartan-88.235.51.102
.
static extern bool AdjustWindowRectEx(ref RECT lpRect, uint dwStyle,
.
Public Function AdjustWindowRectEx(<MarshalAs(UnmanagedType.Struct)>byref lpRect As RECT, _
.
Public Declare Function AdjustWindowRectEx Lib "user32" _
.
AdjustWindowRectEx(ref lpRect, CreateParams.Style, false, CreateParams.ExStyle);
.