Commit e18654ed authored by Austin English's avatar Austin English Committed by Alexandre Julliard

shell32: Add SHRemoveLocalizedName stub.

parent c5dde63b
......@@ -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()
......
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment