mscoree: Add stub implementation for CreateConfigStream.
This commit is contained in:
parent
47a44f61e2
commit
87429c72f6
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue