shell32: Add SHRemoveLocalizedName stub.

Signed-off-by: Austin English <austinenglish@gmail.com>
Signed-off-by: Sebastian Lackner <sebastian@fds-team.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Austin English 2016-10-10 21:46:26 -05:00 committed by Alexandre Julliard
parent c5dde63b19
commit e18654edac
2 changed files with 10 additions and 0 deletions

View File

@ -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()

View File

@ -2118,6 +2118,15 @@ DWORD WINAPI SHFormatDrive(HWND hwnd, UINT drive, UINT fmtID, UINT options)
return SHFMT_NOFORMAT;
}
/*************************************************************************
* SHRemoveLocalizedName (SHELL32.@)
*/
HRESULT WINAPI SHRemoveLocalizedName(const WCHAR *path)
{
FIXME("%s stub\n", debugstr_w(path));
return S_OK;
}
/*************************************************************************
* SHSetLocalizedName (SHELL32.@)
*/