shell32: Add a stub for SHSetUnreadMailCountW.
This commit is contained in:
parent
befa44246c
commit
cfa1813e1b
|
@ -403,6 +403,7 @@
|
||||||
@ stdcall SHQueryRecycleBinA(str ptr)
|
@ stdcall SHQueryRecycleBinA(str ptr)
|
||||||
@ stdcall SHQueryRecycleBinW(wstr ptr)
|
@ stdcall SHQueryRecycleBinW(wstr ptr)
|
||||||
@ stdcall SHSetLocalizedName(wstr wstr long)
|
@ stdcall SHSetLocalizedName(wstr wstr long)
|
||||||
|
@ stdcall SHSetUnreadMailCountW(wstr long wstr)
|
||||||
@ stdcall SHUpdateRecycleBinIcon()
|
@ stdcall SHUpdateRecycleBinIcon()
|
||||||
@ stdcall SheChangeDirA(str)
|
@ stdcall SheChangeDirA(str)
|
||||||
@ stub SheChangeDirExA
|
@ stub SheChangeDirExA
|
||||||
|
|
|
@ -1282,14 +1282,29 @@ LRESULT CALLBACK ShellHookProc(DWORD a, DWORD b, DWORD c)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SHGetLocalizedName (SHELL32.@)
|
||||||
|
*/
|
||||||
HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *res)
|
HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *res)
|
||||||
{
|
{
|
||||||
FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res);
|
FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res);
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SetCurrentProcessExplicitAppUserModelID (SHELL32.@)
|
||||||
|
*/
|
||||||
HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(PCWSTR appid)
|
HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(PCWSTR appid)
|
||||||
{
|
{
|
||||||
FIXME("%s: stub\n", debugstr_w(appid));
|
FIXME("%s: stub\n", debugstr_w(appid));
|
||||||
return E_NOTIMPL;
|
return E_NOTIMPL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* SHSetUnreadMailCountW (SHELL32.@)
|
||||||
|
*/
|
||||||
|
HRESULT WINAPI SHSetUnreadMailCountW(LPCWSTR mailaddress, DWORD count, LPCWSTR executecommand)
|
||||||
|
{
|
||||||
|
FIXME("%s %x %s: stub\n", debugstr_w(mailaddress), count, debugstr_w(executecommand));
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue