[COMDLG32] Enable saving files with different extension (#4903)

As on Windows, gives precedence to the user's extension in file names if there is one.
Otherwise appends the selected extension. If not selected, append default extension.
This commit is contained in:
Jose Carlos Jesus 2023-04-30 14:21:20 +01:00 committed by GitHub
parent 1fd9d11f16
commit a0d747fa50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3099,6 +3099,7 @@ BOOL FILEDLG95_OnOpen(HWND hwnd)
/* Attach the file extension with file name*/
ext = PathFindExtensionW(lpstrPathAndFile);
#ifdef __REACTOS__
if (*ext == UNICODE_NULL && fodInfos->defext)
{
LPWSTR filterExt = NULL, lpstrFilter = NULL, pch, pchNext;
LPCWSTR the_ext = NULL;