André Hentschel : mscoree: Add stub implementation for CreateConfigStream.

Alexandre Julliard julliard at winehq.org
Mon Mar 28 14:22:02 CDT 2011


Module: wine
Branch: master
Commit: 87429c72f67b08acbb254e6c1686d3f61b6d3e58
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=87429c72f67b08acbb254e6c1686d3f61b6d3e58

Author: André Hentschel <nerv at dawncrow.de>
Date:   Fri Mar 25 21:56:57 2011 +0100

mscoree: Add stub implementation for CreateConfigStream.

---

 dlls/mscoree/mscoree.spec   |    2 +-
 dlls/mscoree/mscoree_main.c |    6 ++++++
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/dlls/mscoree/mscoree.spec b/dlls/mscoree/mscoree.spec
index 8cf548d..63a14b6 100644
--- a/dlls/mscoree/mscoree.spec
+++ b/dlls/mscoree/mscoree.spec
@@ -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)
diff --git a/dlls/mscoree/mscoree_main.c b/dlls/mscoree/mscoree_main.c
index 6f53c8f..9b5d401 100644
--- a/dlls/mscoree/mscoree_main.c
+++ b/dlls/mscoree/mscoree_main.c
@@ -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);




More information about the wine-cvs mailing list