fusion: Add a stub implementation of CreateApplicationContext.
This commit is contained in:
parent
587e107398
commit
68ab799924
|
@ -52,6 +52,15 @@ HRESULT WINAPI CreateInstallReferenceEnum(IInstallReferenceEnum **ppRefEnum,
|
||||||
return E_NOTIMPL;
|
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,
|
static HRESULT (WINAPI *pGetCORVersion)(LPWSTR pbuffer, DWORD cchBuffer,
|
||||||
DWORD *dwLength);
|
DWORD *dwLength);
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@ stub CopyPDBs
|
@ stub CopyPDBs
|
||||||
@ stdcall ClearDownloadCache()
|
@ stdcall ClearDownloadCache()
|
||||||
@ stub CreateApplicationContext
|
@ stdcall CreateApplicationContext(ptr ptr)
|
||||||
@ stdcall CreateAssemblyCache(ptr long)
|
@ stdcall CreateAssemblyCache(ptr long)
|
||||||
@ stdcall CreateAssemblyEnum(ptr ptr ptr long ptr)
|
@ stdcall CreateAssemblyEnum(ptr ptr ptr long ptr)
|
||||||
@ stdcall CreateAssemblyNameObject(ptr wstr long ptr)
|
@ stdcall CreateAssemblyNameObject(ptr wstr long ptr)
|
||||||
|
|
Loading…
Reference in New Issue