The previous version of the code incorrectly assumed that the lpszClass
member of CREATESTRUCT passed with WM_CREATE would point to the same
memory used for the CreateWindowEx class name parameter, and used a
pointer comparison to check for class name equality.
As a side effect of commit e41c255be6ba66d1eec7affe674b8cc7699226b8
"win32u: Use send_message_timeout for WM_CREATE and WM_NCCREATE" the
CREATESTRUCT lpszClass member started pointing to different memory,
breaking the current implementation of MCIWndCreate().
This commit fixes the problem by performing a proper, case-insensitive
string comparison to determine class name equality.
Wine-bug: https://bugs.winehq.org/show_bug.cgi?id=53578
--
https://gitlab.winehq.org/wine/wine/-/merge_requests/726
Made changes to comdlg32/itemdlg.c to add missing controls, which are the address bar and the up button.
Updated bitmaps in comctl32 and SVG files for history icons.
My changes help to resolve this bug: https://bugs.winehq.org/show_bug.cgi?id=50338.
--
v11: comdlg32: Add missing controls to the common item dialog, only affecting the implementation
comdlg32: Add missing controls and their functionality to IFileDialog, or the common item dialog.
https://gitlab.winehq.org/wine/wine/-/merge_requests/672
--
v2: mountmgr.sys: Implemented FileFsSizeInformation and FileFsFullSizeInformation volume queries
ntdll: Implemented NtQueryVolumeInformationFile FileFsFullSizeInformation
kernel32/tests: Added tests for GetDiskFreeSpaceA/W with volume GUID paths
kernel32/tests: GetDiskFreeSpaceA/W test targetted at a real drive
https://gitlab.winehq.org/wine/wine/-/merge_requests/710