Commit 4a4e3810 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

Added RNIGetCompatibleVersion implementation.

parent 37418c6d
......@@ -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);
......@@ -199,6 +202,15 @@ HRESULT WINAPI RunHTMLApplication( HINSTANCE hinst, HINSTANCE hPrevInst,
}
/***********************************************************************
* RNIGetCompatibleVersion (MSHTML.@)
*/
DWORD WINAPI RNIGetCompatibleVersion(void)
{
TRACE("()\n");
return 0x20000;
}
/***********************************************************************
* DllInstall (MSHTML.@)
*/
HRESULT WINAPI DllInstall(BOOL bInstall, LPCWSTR cmdline)
......
......@@ -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
......
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