mscoree: Add stub implementation for CreateConfigStream.

This commit is contained in:
André Hentschel 2011-03-25 21:56:57 +01:00 committed by Alexandre Julliard
parent 47a44f61e2
commit 87429c72f6
2 changed files with 7 additions and 1 deletions

View File

@ -28,7 +28,7 @@
@ stub CorIsLatestSvc
@ stub CorMarkThreadInThreadPool
@ stub CorTickleSvc
@ stub CreateConfigStream
@ stdcall CreateConfigStream(wstr ptr)
@ stub CreateDebuggingInterfaceFromVersion
@ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr)

View File

@ -422,6 +422,12 @@ BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerifi
return FALSE;
}
HRESULT WINAPI CreateConfigStream(LPCWSTR filename, IStream **stream)
{
FIXME("(%s, %p): stub\n", debugstr_w(filename), stream);
return E_NOTIMPL;
}
HRESULT WINAPI CLRCreateInstance(REFCLSID clsid, REFIID riid, LPVOID *ppInterface)
{
TRACE("(%s,%s,%p)\n", debugstr_guid(clsid), debugstr_guid(riid), ppInterface);