wshom.ocx: Implement IWshShortcut_put_TargetPath().
This commit is contained in:
parent
033c18fce9
commit
34f1811d12
|
@ -462,8 +462,8 @@ static HRESULT WINAPI WshShortcut_get_TargetPath(IWshShortcut *iface, BSTR *Path
|
||||||
static HRESULT WINAPI WshShortcut_put_TargetPath(IWshShortcut *iface, BSTR Path)
|
static HRESULT WINAPI WshShortcut_put_TargetPath(IWshShortcut *iface, BSTR Path)
|
||||||
{
|
{
|
||||||
WshShortcut *This = impl_from_IWshShortcut(iface);
|
WshShortcut *This = impl_from_IWshShortcut(iface);
|
||||||
FIXME("(%p)->(%s): stub\n", This, debugstr_w(Path));
|
TRACE("(%p)->(%s)\n", This, debugstr_w(Path));
|
||||||
return E_NOTIMPL;
|
return IShellLinkW_SetPath(This->link, Path);
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI WshShortcut_get_WindowStyle(IWshShortcut *iface, int *ShowCmd)
|
static HRESULT WINAPI WshShortcut_get_WindowStyle(IWshShortcut *iface, int *ShowCmd)
|
||||||
|
|
Loading…
Reference in New Issue