[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
This commit is contained in:
Ratin Gao 2023-02-10 22:56:13 +08:00 committed by GitHub
parent 2f70f79904
commit 5c22ce3742
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;