Austin English : shell32: Add SHRemoveLocalizedName stub.

Alexandre Julliard julliard at winehq.org
Wed Oct 19 20:47:57 CDT 2016


Module: wine
Branch: master
Commit: e18654edace0072724fbb49bbc7038da84742976
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e18654edace0072724fbb49bbc7038da84742976

Author: Austin English <austinenglish at gmail.com>
Date:   Mon Oct 10 21:46:26 2016 -0500

shell32: Add SHRemoveLocalizedName stub.

Signed-off-by: Austin English <austinenglish at gmail.com>
Signed-off-by: Sebastian Lackner <sebastian at fds-team.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/shell32/shell32.spec | 1 +
 dlls/shell32/shellord.c   | 9 +++++++++
 2 files changed, 10 insertions(+)

diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec
index f95aaa7..0d43f3b 100644
--- a/dlls/shell32/shell32.spec
+++ b/dlls/shell32/shell32.spec
@@ -412,6 +412,7 @@
 @ stdcall SHQueryRecycleBinA(str ptr)
 @ stdcall SHQueryRecycleBinW(wstr ptr)
 @ stdcall SHQueryUserNotificationState(ptr)
+@ stdcall SHRemoveLocalizedName(wstr)
 @ stdcall SHSetLocalizedName(wstr wstr long)
 @ stdcall SHSetUnreadMailCountW(wstr long wstr)
 @ stdcall SHUpdateRecycleBinIcon()
diff --git a/dlls/shell32/shellord.c b/dlls/shell32/shellord.c
index 60492de..1a67a52 100644
--- a/dlls/shell32/shellord.c
+++ b/dlls/shell32/shellord.c
@@ -2119,6 +2119,15 @@ DWORD WINAPI SHFormatDrive(HWND hwnd, UINT drive, UINT fmtID, UINT options)
 }
 
 /*************************************************************************
+ *              SHRemoveLocalizedName (SHELL32.@)
+ */
+HRESULT WINAPI SHRemoveLocalizedName(const WCHAR *path)
+{
+    FIXME("%s stub\n", debugstr_w(path));
+    return S_OK;
+}
+
+/*************************************************************************
  *              SHSetLocalizedName (SHELL32.@)
  */
 HRESULT WINAPI SHSetLocalizedName(LPWSTR pszPath, LPCWSTR pszResModule, int idsRes)




More information about the wine-cvs mailing list