Commit 27c0a061 authored by Mike Hearn's avatar Mike Hearn Committed by Alexandre Julliard

Implement SHDOCVW_DllGetVersion. It returns the same information as

the Win98/IE6 implementation does.
parent ede82e30
......@@ -188,10 +188,17 @@ HRESULT WINAPI SHDOCVW_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *p
/***********************************************************************
* DllGetVersion (SHDOCVW.@)
*/
HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *pdvi)
HRESULT WINAPI SHDOCVW_DllGetVersion (DLLVERSIONINFO *info)
{
FIXME("(void): stub\n");
return S_FALSE;
if (info->cbSize != sizeof(DLLVERSIONINFO)) FIXME("support DLLVERSIONINFO2\n");
/* this is what IE6 on Windows 98 reports */
info->dwMajorVersion = 6;
info->dwMinorVersion = 0;
info->dwBuildNumber = 2600;
info->dwPlatformID = DLLVER_PLATFORM_WINDOWS;
return NOERROR;
}
/*************************************************************************
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment