Commit e805fe50 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

hlink: Added HlinkGetSpecialReference stub.

parent a624fb04
......@@ -14,7 +14,7 @@
18 stub HlinkParseDisplayName
20 stdcall HlinkQueryCreateFromData(ptr)
21 stub HlinkSetSpecialReference
22 stub HlinkGetSpecialReference
22 stdcall HlinkGetSpecialReference(long ptr)
23 stub HlinkCreateShortcut
24 stub HlinkResolveShortcut
25 stdcall HlinkIsShortcut(wstr)
......
......@@ -276,6 +276,12 @@ HRESULT WINAPI HlinkIsShortcut(LPCWSTR pwzFileName)
return strcmpiW(pwzFileName+len, url_ext) ? S_FALSE : S_OK;
}
HRESULT WINAPI HlinkGetSpecialReference(ULONG uReference, LPWSTR *ppwzReference)
{
FIXME("(%u %p) stub\n", uReference, ppwzReference);
return E_NOTIMPL;
}
HRESULT WINAPI HlinkTranslateURL(LPCWSTR pwzURL, DWORD grfFlags, LPWSTR *ppwzTranslatedURL)
{
FIXME("(%s %08x %p)\n", debugstr_w(pwzURL), grfFlags, ppwzTranslatedURL);
......
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