Added RNIGetCompatibleVersion implementation.
This commit is contained in:
parent
37418c6d3c
commit
4a4e381066
|
@ -180,6 +180,9 @@ HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
|
|||
return CLASS_E_CLASSNOTAVAILABLE;
|
||||
}
|
||||
|
||||
/******************************************************************
|
||||
* DllCanUnloadNow (MSHTML.@)
|
||||
*/
|
||||
HRESULT WINAPI DllCanUnloadNow(void)
|
||||
{
|
||||
TRACE("() ref=%ld\n", module_ref);
|
||||
|
@ -198,6 +201,15 @@ HRESULT WINAPI RunHTMLApplication( HINSTANCE hinst, HINSTANCE hPrevInst,
|
|||
return 0;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* RNIGetCompatibleVersion (MSHTML.@)
|
||||
*/
|
||||
DWORD WINAPI RNIGetCompatibleVersion(void)
|
||||
{
|
||||
TRACE("()\n");
|
||||
return 0x20000;
|
||||
}
|
||||
|
||||
/***********************************************************************
|
||||
* DllInstall (MSHTML.@)
|
||||
*/
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
@ stdcall -private DllUnregisterServer()
|
||||
@ stub MatchExactGetIDsOfNames
|
||||
@ stub PrintHTML
|
||||
@ stub RNIGetCompatibleVersion
|
||||
@ stdcall RNIGetCompatibleVersion()
|
||||
@ stdcall RunHTMLApplication(long long str long)
|
||||
@ stub ShowHTMLDialog
|
||||
@ stub ShowModalDialog
|
||||
|
|
Loading…
Reference in New Issue