hlink: Added HlinkGetSpecialReference stub.

This commit is contained in:
Jacek Caban 2007-09-26 19:45:27 +02:00 committed by Alexandre Julliard
parent a624fb044c
commit e805fe50bc
2 changed files with 7 additions and 1 deletions

View File

@ -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)

View File

@ -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);