mshtml: Add stub for QUERY_IS_CACHED_AND_USABLE_OFFLINE.
This commit is contained in:
parent
a843acef55
commit
296b795655
|
@ -478,6 +478,9 @@ static HRESULT WINAPI AboutProtocolInfo_QueryInfo(IInternetProtocolInfo *iface,
|
||||||
case QUERY_USES_HISTORYFOLDER:
|
case QUERY_USES_HISTORYFOLDER:
|
||||||
FIXME("Unsupported option QUERY_USES_HISTORYFOLDER\n");
|
FIXME("Unsupported option QUERY_USES_HISTORYFOLDER\n");
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
|
case QUERY_IS_CACHED_AND_USABLE_OFFLINE:
|
||||||
|
FIXME("Unsupported option QUERY_IS_CACHED_AND_USABLE_OFFLINE\n");
|
||||||
|
return E_NOTIMPL;
|
||||||
default:
|
default:
|
||||||
return E_FAIL;
|
return E_FAIL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -755,6 +755,7 @@ static void test_about_protocol(void)
|
||||||
case QUERY_IS_SECURE:
|
case QUERY_IS_SECURE:
|
||||||
case QUERY_IS_SAFE:
|
case QUERY_IS_SAFE:
|
||||||
case QUERY_USES_HISTORYFOLDER:
|
case QUERY_USES_HISTORYFOLDER:
|
||||||
|
case QUERY_IS_CACHED_AND_USABLE_OFFLINE:
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
hres = IInternetProtocolInfo_QueryInfo(protocol_info, about_blank_url, i, 0,
|
hres = IInternetProtocolInfo_QueryInfo(protocol_info, about_blank_url, i, 0,
|
||||||
|
|
|
@ -881,7 +881,8 @@ interface IInternetProtocolInfo : IUnknown
|
||||||
QUERY_USES_CACHE,
|
QUERY_USES_CACHE,
|
||||||
QUERY_IS_SECURE,
|
QUERY_IS_SECURE,
|
||||||
QUERY_IS_SAFE,
|
QUERY_IS_SAFE,
|
||||||
QUERY_USES_HISTORYFOLDER
|
QUERY_USES_HISTORYFOLDER,
|
||||||
|
QUERY_IS_CACHED_AND_USABLE_OFFLINE
|
||||||
} QUERYOPTION;
|
} QUERYOPTION;
|
||||||
|
|
||||||
HRESULT ParseUrl(
|
HRESULT ParseUrl(
|
||||||
|
|
Loading…
Reference in New Issue