From 7abdcd2c4563b4980b8409dd0efaf8ef8c6b4956 Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Thu, 20 May 2010 23:31:55 +0400 Subject: [PATCH] shell32: Add SHGetLocalizedName stub. --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shell32_main.c | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 7a5d4ed8b11..c398f92c93c 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -358,6 +358,7 @@ @ stdcall SHGetIconOverlayIndexA(str long) @ stdcall SHGetIconOverlayIndexW(wstr long) @ stdcall SHGetInstanceExplorer(long) +@ stdcall SHGetLocalizedName(wstr ptr long ptr) @ stdcall SHGetMalloc(ptr) @ stdcall SHGetNewLinkInfo(str str ptr long long) SHGetNewLinkInfoA @ stdcall SHGetPathFromIDList(ptr ptr) SHGetPathFromIDListA diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index dc71022119b..282426801e3 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -1225,3 +1225,9 @@ LRESULT CALLBACK ShellHookProc(DWORD a, DWORD b, DWORD c) FIXME("Stub\n"); return 0; } + +HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *res) +{ + FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res); + return E_NOTIMPL; +}