On Tue, 2006-12-12 at 21:52 +0100, Jacek Caban wrote:
hres = IInternetProtocolInfo_CompareUrl(protocol_info, NULL,
NULL, 0xdeadbeef);
ok(hres == E_NOTIMPL, "CompareUrl failed: %08x\n", hres);
Will these tests also return E_NOTIMPL on Windows? The tests should be against Windows and worked around if it's not implemented in Wine.
Cheers,
Paul.
Paul Vriens wrote:
On Tue, 2006-12-12 at 21:52 +0100, Jacek Caban wrote:
hres = IInternetProtocolInfo_CompareUrl(protocol_info, NULL,
NULL, 0xdeadbeef);
ok(hres == E_NOTIMPL, "CompareUrl failed: %08x\n", hres);
Will these tests also return E_NOTIMPL on Windows? The tests should be against Windows and worked around if it's not implemented in Wine.
Thanks for explaining it but I know that... Yes, these functions really return E_NOTIMPL in Windows.
Jacek