combase: Add DllGetActivationFactory stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
e32b30c323
commit
5e2aac9977
|
@ -170,7 +170,7 @@
|
||||||
@ stdcall CreateStreamOnHGlobal(ptr long ptr) ole32.CreateStreamOnHGlobal
|
@ stdcall CreateStreamOnHGlobal(ptr long ptr) ole32.CreateStreamOnHGlobal
|
||||||
@ stub DcomChannelSetHResult
|
@ stub DcomChannelSetHResult
|
||||||
@ stdcall DllDebugObjectRPCHook(long ptr) ole32.DllDebugObjectRPCHook
|
@ stdcall DllDebugObjectRPCHook(long ptr) ole32.DllDebugObjectRPCHook
|
||||||
@ stub DllGetActivationFactory
|
@ stdcall DllGetActivationFactory(ptr ptr)
|
||||||
@ stdcall -private DllGetClassObject(ptr ptr ptr) ole32.DllGetClassObject
|
@ stdcall -private DllGetClassObject(ptr ptr ptr) ole32.DllGetClassObject
|
||||||
@ stub EnableHookObject
|
@ stub EnableHookObject
|
||||||
@ stdcall FreePropVariantArray(long ptr) ole32.FreePropVariantArray
|
@ stdcall FreePropVariantArray(long ptr) ole32.FreePropVariantArray
|
||||||
|
|
|
@ -282,3 +282,13 @@ void WINAPI CleanupTlsOleState(void *unknown)
|
||||||
{
|
{
|
||||||
FIXME("(%p): stub\n", 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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue