mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 04:39:45 +00:00
hlink: Mark Get/Set AdditionalParams as Unimplemented.
This commit is contained in:
parent
9a7d475db8
commit
522b515b54
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user