https://git.reactos.org/?p=reactos.git;a=commitdiff;h=5c22ce374280c05b4d583…
commit 5c22ce374280c05b4d583e4a16192327746f1926
Author: Ratin Gao <ratin(a)knsoft.org>
AuthorDate: Fri Feb 10 22:56:13 2023 +0800
Commit: GitHub <noreply(a)github.com>
CommitDate: Fri Feb 10 23:56:13 2023 +0900
[SHELL32] Remove unused flag SEE_MASK_UNICODE (#5033)
SEE_MASK_UNICODE does nothing, so we needn't mark it as "unsupported
flag" and output FIXME
---
dll/win32/shell32/shlexec.cpp | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/shell32/shlexec.cpp b/dll/win32/shell32/shlexec.cpp
index 8784bbf4373..746c92076bb 100644
--- a/dll/win32/shell32/shlexec.cpp
+++ b/dll/win32/shell32/shlexec.cpp
@@ -1823,7 +1823,7 @@ static BOOL SHELL_execute(LPSHELLEXECUTEINFOW sei, SHELL_ExecuteW32
execfunc)
static const DWORD unsupportedFlags =
SEE_MASK_ICON | SEE_MASK_HOTKEY |
SEE_MASK_CONNECTNETDRV | SEE_MASK_FLAG_DDEWAIT |
- SEE_MASK_UNICODE | SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR;
+ SEE_MASK_ASYNCOK | SEE_MASK_HMONITOR;
WCHAR parametersBuffer[1024], dirBuffer[MAX_PATH], wcmdBuffer[1024];
WCHAR *wszApplicationName, *wszParameters, *wszDir, *wcmd;