We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The type of dwStyle/swExStyle parameter of AdjustWindowRectExForDpi function is uint.
dwStyle
swExStyle
AdjustWindowRectExForDpi
uint
It would be better to use WINDOW_STYLE and WINDOW_EX_STYLE as in the AdjustWindowRectEx function.
WINDOW_STYLE
WINDOW_EX_STYLE
AdjustWindowRectEx
public unsafe static extern BOOL AdjustWindowRectExForDpi([In][Out] RECT* lpRect, [In] uint dwStyle, [In] BOOL bMenu, [In] uint dwExStyle, [In] uint dpi); public unsafe static extern BOOL AdjustWindowRectEx([In][Out] RECT* lpRect, [In] WINDOW_STYLE dwStyle, [In] BOOL bMenu, [In] WINDOW_EX_STYLE dwExStyle);
The text was updated successfully, but these errors were encountered:
340a585
mikebattista
No branches or pull requests
The type of
dwStyle
/swExStyle
parameter ofAdjustWindowRectExForDpi
function isuint
.It would be better to use
WINDOW_STYLE
andWINDOW_EX_STYLE
as in theAdjustWindowRectEx
function.The text was updated successfully, but these errors were encountered: