urlmon/tests: Accept IInternetProtocolEx interface id.
This commit is contained in:
parent
9ab359314d
commit
d4226445d0
|
@ -755,6 +755,12 @@ static HRESULT WINAPI Protocol_QueryInterface(IInternetProtocol *iface, REFIID r
|
|||
return S_OK;
|
||||
}
|
||||
|
||||
if(IsEqualGUID(&IID_IInternetProtocolEx, riid)) {
|
||||
trace("IID_IInternetProtocolEx not supported\n");
|
||||
*ppv = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
if(IsEqualGUID(&IID_IInternetPriority, riid)) {
|
||||
*ppv = &InternetPriority;
|
||||
return S_OK;
|
||||
|
|
Loading…
Reference in New Issue