shell32: Stub for SHSetLocalizedName.

This commit is contained in:
András Kovács 2006-07-14 06:33:25 +02:00 committed by Alexandre Julliard
parent 5cf870dae5
commit 38c8950e17
2 changed files with 11 additions and 0 deletions

View File

@ -366,6 +366,7 @@
@ stub SHPathPrepareForWriteW
@ stdcall SHQueryRecycleBinA(str ptr)
@ stdcall SHQueryRecycleBinW(wstr ptr)
@ stdcall SHSetLocalizedName(wstr wstr long)
@ stub SHUpdateRecycleBinIcon
@ stdcall SheChangeDirA(str)
@ stub SheChangeDirExA

View File

@ -1703,3 +1703,13 @@ HRESULT WINAPI SHQueryRecycleBinW(LPCWSTR pszRootPath, LPSHQUERYRBINFO pSHQueryR
return S_OK;
}
/*************************************************************************
* SHSetLocalizedName (SHELL32.@)
*/
HRESULT WINAPI SHSetLocalizedName(LPWSTR pszPath, LPCWSTR pszResModule, int idsRes)
{
FIXME("%p, %s, %d - stub\n", pszPath, debugstr_w(pszResModule), idsRes);
return S_OK;
}