Commit 87429c72 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

mscoree: Add stub implementation for CreateConfigStream.

parent 47a44f61
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
@ stub CorIsLatestSvc @ stub CorIsLatestSvc
@ stub CorMarkThreadInThreadPool @ stub CorMarkThreadInThreadPool
@ stub CorTickleSvc @ stub CorTickleSvc
@ stub CreateConfigStream @ stdcall CreateConfigStream(wstr ptr)
@ stub CreateDebuggingInterfaceFromVersion @ stub CreateDebuggingInterfaceFromVersion
@ stdcall -private DllCanUnloadNow() @ stdcall -private DllCanUnloadNow()
@ stdcall -private DllGetClassObject(ptr ptr ptr) @ stdcall -private DllGetClassObject(ptr ptr ptr)
......
...@@ -422,6 +422,12 @@ BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerifi ...@@ -422,6 +422,12 @@ BOOL WINAPI StrongNameSignatureVerificationEx(LPCWSTR filename, BOOL forceVerifi
return FALSE; 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) HRESULT WINAPI CLRCreateInstance(REFCLSID clsid, REFIID riid, LPVOID *ppInterface)
{ {
TRACE("(%s,%s,%p)\n", debugstr_guid(clsid), debugstr_guid(riid), ppInterface); TRACE("(%s,%s,%p)\n", debugstr_guid(clsid), debugstr_guid(riid), ppInterface);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment