Module: wine Branch: master Commit: 522b515b544ae8d366a37fff916b2afa33523f69 URL: http://source.winehq.org/git/wine.git/?a=commit;h=522b515b544ae8d366a37fff91...
Author: Alistair Leslie-Hughes leslie_alistair@hotmail.com Date: Thu Sep 11 11:19:23 2008 +1000
hlink: Mark Get/Set AdditionalParams as Unimplemented.
---
dlls/hlink/link.c | 4 ++-- dlls/hlink/tests/hlink.c | 7 +++++++ 2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/dlls/hlink/link.c b/dlls/hlink/link.c index ff34556..20841f8 100644 --- a/dlls/hlink/link.c +++ b/dlls/hlink/link.c @@ -441,14 +441,14 @@ static HRESULT WINAPI IHlink_fnNavigate(IHlink* iface, DWORD grfHLNF, LPBC pbc, static HRESULT WINAPI IHlink_fnSetAdditonalParams(IHlink* iface, LPCWSTR pwzAdditionalParams) { - FIXME("\n"); + TRACE("Not implemented in native IHlink\n"); return E_NOTIMPL; }
static HRESULT WINAPI IHlink_fnGetAdditionalParams(IHlink* iface, LPWSTR* ppwzAdditionalParams) { - FIXME("\n"); + TRACE("Not implemented in native IHlink\n"); return E_NOTIMPL; }
diff --git a/dlls/hlink/tests/hlink.c b/dlls/hlink/tests/hlink.c index 9e4c5a3..89b7c7a 100644 --- a/dlls/hlink/tests/hlink.c +++ b/dlls/hlink/tests/hlink.c @@ -158,6 +158,13 @@ static void test_reference(void) ok(r == S_OK, "failed\n"); ok(str == NULL, "string should be null\n");
+ /* Unimplented functions checks */ + r = IHlink_GetAdditionalParams(lnk, NULL); + ok(r == E_NOTIMPL, "failed\n"); + + r = IHlink_SetAdditionalParams(lnk, NULL); + ok(r == E_NOTIMPL, "failed\n"); + IHlink_Release(lnk); }