hlink: Added HlinkTranslateURL tub implementation.

This commit is contained in:
Jacek Caban 2006-08-02 21:30:46 +02:00 committed by Alexandre Julliard
parent 506e09308a
commit 35a8c6a251
3 changed files with 8 additions and 1 deletions

View File

@ -23,7 +23,7 @@
28 stub HlinkGetValueFromParams 28 stub HlinkGetValueFromParams
29 stub HlinkCreateShortcutFromMoniker 29 stub HlinkCreateShortcutFromMoniker
30 stub HlinkResolveShortcutToMoniker 30 stub HlinkResolveShortcutToMoniker
31 stub HlinkTranslateURL 31 stdcall HlinkTranslateURL(wstr long ptr)
32 stdcall HlinkCreateExtensionServices(wstr long wstr wstr ptr ptr ptr) 32 stdcall HlinkCreateExtensionServices(wstr long wstr wstr ptr ptr ptr)
33 stub HlinkPreprocessMoniker 33 stub HlinkPreprocessMoniker

View File

@ -273,6 +273,12 @@ HRESULT WINAPI HlinkIsShortcut(LPCWSTR pwzFileName)
return strcmpiW(pwzFileName+len, url_ext) ? S_FALSE : S_OK; return strcmpiW(pwzFileName+len, url_ext) ? S_FALSE : S_OK;
} }
HRESULT WINAPI HlinkTranslateURL(LPCWSTR pwzURL, DWORD grfFlags, LPWSTR *ppwzTranslatedURL)
{
FIXME("(%s %08lx %p)\n", debugstr_w(pwzURL), grfFlags, ppwzTranslatedURL);
return E_NOTIMPL;
}
static HRESULT WINAPI HLinkCF_fnQueryInterface ( LPCLASSFACTORY iface, static HRESULT WINAPI HLinkCF_fnQueryInterface ( LPCLASSFACTORY iface,
REFIID riid, LPVOID *ppvObj) REFIID riid, LPVOID *ppvObj)
{ {

View File

@ -33,6 +33,7 @@ cpp_quote("HRESULT WINAPI HlinkNavigateToStringReference(LPCWSTR, LPCWSTR, IHlin
cpp_quote("HRESULT WINAPI HlinkNavigate(IHlink*, IHlinkFrame*, DWORD, LPBC, IBindStatusCallback*, IHlinkBrowseContext*);") cpp_quote("HRESULT WINAPI HlinkNavigate(IHlink*, IHlinkFrame*, DWORD, LPBC, IBindStatusCallback*, IHlinkBrowseContext*);")
cpp_quote("HRESULT WINAPI HlinkOnNavigate(IHlinkFrame*, IHlinkBrowseContext*, DWORD, IMoniker*, LPCWSTR, LPCWSTR, ULONG*);") cpp_quote("HRESULT WINAPI HlinkOnNavigate(IHlinkFrame*, IHlinkBrowseContext*, DWORD, IMoniker*, LPCWSTR, LPCWSTR, ULONG*);")
cpp_quote("HRESULT WINAPI HlinkIsShortcut(LPCWSTR);") cpp_quote("HRESULT WINAPI HlinkIsShortcut(LPCWSTR);")
cpp_quote("HRESULT WINAPI HlinkTranslateURL(LPCWSTR,DWORD,LPWSTR*);")
/***************************************************************************** /*****************************************************************************
* IHlink interface * IHlink interface