From 33084f82f37727392c0dd38a1ea9c17fb954084a Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Thu, 29 Jan 2004 20:09:20 +0000 Subject: [PATCH] use strcmpiW() instead of _wcsicmp() for Wine-compatibility svn path=/trunk/; revision=7908 --- reactos/lib/shell32/shlexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/shell32/shlexec.c b/reactos/lib/shell32/shlexec.c index 0a18c52a97a..ee1fdb93784 100644 --- a/reactos/lib/shell32/shlexec.c +++ b/reactos/lib/shell32/shlexec.c @@ -1035,7 +1035,7 @@ BOOL WINAPI ShellExecuteExW32 (LPSHELLEXECUTEINFOW psei, SHELL_ExecuteW32 execfu /* resolve shell shortcuts */ ext = PathFindExtensionW(sei_tmp.lpFile); - if (ext && !_wcsicmp(ext, wExtLnk)) /* or check for: shell_attribs & SFGAO_LINK */ + if (ext && !strcmpiW(ext, wExtLnk)) /* or check for: shell_attribs & SFGAO_LINK */ { HRESULT hr = SHELL_ResolveShortCutW((LPWSTR)sei_tmp.lpFile, (LPWSTR)sei_tmp.lpParameters, (LPWSTR)sei_tmp.lpDirectory, sei_tmp.hwnd, sei_tmp.lpVerb?sei_tmp.lpVerb:wszEmpty, &sei_tmp.nShow, (LPITEMIDLIST*)&sei_tmp.lpIDList);