ieframe: Add stub for IEGetWriteableHKCU.

This commit is contained in:
Louis Lenders 2011-08-11 10:25:01 +02:00 committed by Alexandre Julliard
parent e772a2b51f
commit bb6b19ba88
2 changed files with 10 additions and 0 deletions

View file

@ -5,4 +5,5 @@
@ stdcall -private DllGetClassObject(ptr ptr ptr)
@ stdcall -private DllRegisterServer()
@ stdcall -private DllUnregisterServer()
@ stdcall IEGetWriteableHKCU(ptr)
@ stdcall OpenURL(long long str long)

View file

@ -290,3 +290,12 @@ HRESULT WINAPI DllUnregisterServer(void)
TRACE("()\n");
return __wine_unregister_resources(ieframe_instance);
}
/***********************************************************************
* IEGetWriteableHKCU (ieframe.@)
*/
HRESULT WINAPI IEGetWriteableHKCU(HKEY *pkey)
{
FIXME("(%p) stub\n", pkey);
return E_NOTIMPL;
}