Alistair Leslie-Hughes : mscoree: Add stub CreateDebuggingInterfaceFromVersion.

Alexandre Julliard julliard at winehq.org
Thu Apr 28 12:19:03 CDT 2011


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

Author: Alistair Leslie-Hughes <leslie_alistair at hotmail.com>
Date:   Thu Apr 28 20:03:49 2011 +1000

mscoree: Add stub CreateDebuggingInterfaceFromVersion.

---

 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 99b3efb..452f6bd 100644
--- a/dlls/mscoree/mscoree.spec
+++ b/dlls/mscoree/mscoree.spec
@@ -29,7 +29,7 @@
 @ stub CorMarkThreadInThreadPool
 @ stub CorTickleSvc
 @ stdcall CreateConfigStream(wstr ptr)
-@ stub CreateDebuggingInterfaceFromVersion
+@ stdcall CreateDebuggingInterfaceFromVersion(long wstr ptr)
 @ stdcall -private DllCanUnloadNow()
 @ stdcall -private DllGetClassObject(ptr ptr ptr)
 @ stdcall -private DllRegisterServer()
diff --git a/dlls/mscoree/mscoree_main.c b/dlls/mscoree/mscoree_main.c
index 49c802e..6701ef5 100644
--- a/dlls/mscoree/mscoree_main.c
+++ b/dlls/mscoree/mscoree_main.c
@@ -434,6 +434,12 @@ HRESULT WINAPI CreateConfigStream(LPCWSTR filename, IStream **stream)
     return E_NOTIMPL;
 }
 
+HRESULT WINAPI CreateDebuggingInterfaceFromVersion(int nDebugVersion, LPCWSTR version, IUnknown **ppIUnk)
+{
+    FIXME("(%d %s, %p): stub\n", nDebugVersion, debugstr_w(version), ppIUnk);
+    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