[PATCH] shlwapi: Remove unused function.

Nikolay Sivov nsivov at codeweavers.com
Tue Jul 2 12:44:24 CDT 2019


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---
 dlls/shlwapi/path.c | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/dlls/shlwapi/path.c b/dlls/shlwapi/path.c
index a8d1c97172..e7b56a7ade 100644
--- a/dlls/shlwapi/path.c
+++ b/dlls/shlwapi/path.c
@@ -54,21 +54,6 @@ static  fnpIsNetDrive pIsNetDrive;
 
 HRESULT WINAPI SHGetWebFolderFilePathW(LPCWSTR,LPWSTR,DWORD);
 
-static inline WCHAR* heap_strdupAtoW(LPCSTR str)
-{
-    WCHAR *ret = NULL;
-
-    if (str)
-    {
-        DWORD len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
-        ret = HeapAlloc(GetProcessHeap(), 0, len*sizeof(WCHAR));
-        if (ret)
-            MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
-    }
-
-    return ret;
-}
-
 /*************************************************************************
  * PathBuildRootA    [SHLWAPI.@]
  *
-- 
2.20.1




More information about the wine-devel mailing list