From: Austin English Subject: [PATCH 1/2] shell32: add SHRemoveLocalizedName stub (try 2) Message-Id: Date: Tue, 11 Oct 2016 01:33:01 -0500 Try 2: add missing WINAPI -- -Austin GPG: 14FB D7EA A041 937B From 9204fe7606008f0f0b7749bf78786625ce2bd027 Mon Sep 17 00:00:00 2001 From: Austin English Date: Mon, 10 Oct 2016 21:46:26 -0500 Subject: [PATCH 1/2] shell32: add SHRemoveLocalizedName stub (try 2) Signed-off-by: Austin English --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shellpath.c | 6 ++++++ 2 files changed, 7 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/shellpath.c b/dlls/shell32/shellpath.c index 2072814..78fb57c 100644 --- a/dlls/shell32/shellpath.c +++ b/dlls/shell32/shellpath.c @@ -5843,3 +5843,9 @@ HRESULT SHELL_RegisterShellFolders(void) register_system_knownfolders(); return hr; } + +HRESULT WINAPI SHRemoveLocalizedName(const WCHAR *path) +{ + FIXME("%s stub\n", debugstr_w(path)); + return S_OK; +} -- 2.7.3