fusion: Add a stub implementation of InitializeFusion.

This commit is contained in:
Hans Leidekker 2012-05-24 09:53:43 +02:00 committed by Alexandre Julliard
parent 2024e241ff
commit 4f392d53e3
2 changed files with 7 additions and 1 deletions

View file

@ -8,7 +8,7 @@
@ stdcall CreateInstallReferenceEnum(ptr ptr long ptr)
@ stdcall GetCachePath(long wstr ptr)
@ stub GetHistoryFileDirectory
@ stub InitializeFusion
@ stdcall InitializeFusion()
@ stub InstallCustomAssembly
@ stub InstallCustomModule
@ stub LookupHistoryAssembly

View file

@ -47,3 +47,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE;
}
HRESULT WINAPI InitializeFusion(void)
{
FIXME("\n");
return E_NOTIMPL;
}