Commit e83ca9b7 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

shell32: Add stub for SHSetTemporaryPropertyForItem.

parent 6a78f71f
......@@ -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)
......
......@@ -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;
}
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