Module: wine Branch: master Commit: 68ab79992426f459b0fff26360a368dccb3b25ac URL: http://source.winehq.org/git/wine.git/?a=commit;h=68ab79992426f459b0fff26360...
Author: Hans Leidekker hans@codeweavers.com Date: Mon Feb 22 12:26:34 2010 +0100
fusion: Add a stub implementation of CreateApplicationContext.
---
dlls/fusion/fusion.c | 9 +++++++++ dlls/fusion/fusion.spec | 2 +- 2 files changed, 10 insertions(+), 1 deletions(-)
diff --git a/dlls/fusion/fusion.c b/dlls/fusion/fusion.c index 7c94100..ad77233 100644 --- a/dlls/fusion/fusion.c +++ b/dlls/fusion/fusion.c @@ -52,6 +52,15 @@ HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum, return E_NOTIMPL; }
+/****************************************************************** + * CreateApplicationContext (FUSION.@) + */ +HRESULT WINAPI CreateApplicationContext(IAssemblyName *name, void *ctx) +{ + FIXME("%p, %p\n", name, ctx); + return E_NOTIMPL; +} + static HRESULT (WINAPI *pGetCORVersion)(LPWSTR pbuffer, DWORD cchBuffer, DWORD *dwLength);
diff --git a/dlls/fusion/fusion.spec b/dlls/fusion/fusion.spec index e589ad1..54e4ead 100644 --- a/dlls/fusion/fusion.spec +++ b/dlls/fusion/fusion.spec @@ -1,6 +1,6 @@ @ stub CopyPDBs @ stdcall ClearDownloadCache() -@ stub CreateApplicationContext +@ stdcall CreateApplicationContext(ptr ptr) @ stdcall CreateAssemblyCache(ptr long) @ stdcall CreateAssemblyEnum(ptr ptr ptr long ptr) @ stdcall CreateAssemblyNameObject(ptr wstr long ptr)