shell32: Add stub for SHSetTemporaryPropertyForItem.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=55536
This commit is contained in:
Louis Lenders 2023-11-29 07:19:37 +01:00 committed by Alexandre Julliard
parent 6a78f71f3c
commit e83ca9b772
2 changed files with 8 additions and 0 deletions

View file

@ -425,6 +425,7 @@
@ stdcall SHQueryUserNotificationState(ptr)
@ stdcall SHRemoveLocalizedName(wstr)
@ stdcall SHSetLocalizedName(wstr wstr long)
@ stdcall SHSetTemporaryPropertyForItem(ptr ptr ptr)
@ stdcall SHSetUnreadMailCountW(wstr long wstr)
@ stdcall SHUpdateRecycleBinIcon()
@ stdcall SheChangeDirA(str)

View file

@ -1658,3 +1658,10 @@ HRESULT WINAPI CustomDestinationList_Constructor(IUnknown *outer, REFIID riid, v
ICustomDestinationList_Release(&list->ICustomDestinationList_iface);
return hr;
}
HRESULT WINAPI SHSetTemporaryPropertyForItem(IShellItem *psi, REFPROPERTYKEY propkey, REFPROPVARIANT propvar)
{
FIXME("%p %p %p: stub\n", psi, propkey, propvar);
return E_NOTIMPL;
}