Module: wine Branch: master Commit: 4f392d53e3aa9e59b825e1d5d5a2566772fc5b58 URL: http://source.winehq.org/git/wine.git/?a=commit;h=4f392d53e3aa9e59b825e1d5d5...
Author: Hans Leidekker hans@codeweavers.com Date: Thu May 24 09:53:43 2012 +0200
fusion: Add a stub implementation of InitializeFusion.
---
dlls/fusion/fusion.spec | 2 +- dlls/fusion/fusion_main.c | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/dlls/fusion/fusion.spec b/dlls/fusion/fusion.spec index 54e4ead..264aff7 100644 --- a/dlls/fusion/fusion.spec +++ b/dlls/fusion/fusion.spec @@ -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 diff --git a/dlls/fusion/fusion_main.c b/dlls/fusion/fusion_main.c index 5c9d776..8f0906b 100644 --- a/dlls/fusion/fusion_main.c +++ b/dlls/fusion/fusion_main.c @@ -47,3 +47,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return TRUE; } + +HRESULT WINAPI InitializeFusion(void) +{ + FIXME("\n"); + return E_NOTIMPL; +}