diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 60bd63ab7a8..8155365318d 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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) diff --git a/dlls/shell32/shellitem.c b/dlls/shell32/shellitem.c index d8720734e22..93a60d63bd1 100644 --- a/dlls/shell32/shellitem.c +++ b/dlls/shell32/shellitem.c @@ -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; +}