Commit 5e2aac99 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

combase: Add DllGetActivationFactory stub.

parent e32b30c3
......@@ -170,7 +170,7 @@
@ stdcall CreateStreamOnHGlobal(ptr long ptr) ole32.CreateStreamOnHGlobal
@ stub DcomChannelSetHResult
@ stdcall DllDebugObjectRPCHook(long ptr) ole32.DllDebugObjectRPCHook
@ stub DllGetActivationFactory
@ stdcall DllGetActivationFactory(ptr ptr)
@ stdcall -private DllGetClassObject(ptr ptr ptr) ole32.DllGetClassObject
@ stub EnableHookObject
@ stdcall FreePropVariantArray(long ptr) ole32.FreePropVariantArray
......
......@@ -282,3 +282,13 @@ void WINAPI CleanupTlsOleState(void *unknown)
{
FIXME("(%p): stub\n", unknown);
}
/***********************************************************************
* DllGetActivationFactory (combase.@)
*/
HRESULT WINAPI DllGetActivationFactory(HSTRING classid, IActivationFactory **factory)
{
FIXME("(%s, %p): stub\n", debugstr_hstring(classid), factory);
return REGDB_E_CLASSNOTREG;
}
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