urlmon: Add CoInternetIsFeatureEnabled stub.

This commit is contained in:
Nikolay Sivov 2010-03-18 01:24:42 +03:00 committed by Alexandre Julliard
parent 1ad867467e
commit dd50af9464
2 changed files with 10 additions and 0 deletions

View File

@ -405,3 +405,12 @@ HRESULT WINAPI CoInternetSetFeatureEnabled(INTERNETFEATURELIST feature, DWORD fl
FIXME("%d, 0x%08x, %x, stub\n", feature, flags, enable);
return E_NOTIMPL;
}
/***********************************************************************
* CoInternetIsFeatureEnabled (URLMON.@)
*/
HRESULT WINAPI CoInternetIsFeatureEnabled(INTERNETFEATURELIST feature, DWORD flags)
{
FIXME("%d, 0x%08x, stub\n", feature, flags);
return E_NOTIMPL;
}

View File

@ -17,6 +17,7 @@
@ stub CoInternetGetProtocolFlags
@ stdcall CoInternetGetSecurityUrl(ptr ptr long long)
@ stdcall CoInternetGetSession(long ptr long)
@ stdcall CoInternetIsFeatureEnabled(long long)
@ stdcall CoInternetParseUrl(wstr long long wstr long ptr long)
@ stdcall CoInternetQueryInfo(ptr long long ptr long ptr long)
@ stdcall CoInternetSetFeatureEnabled(long long long)