mscoree: Add stub CreateDebuggingInterfaceFromVersion.

This commit is contained in:
Alistair Leslie-Hughes 2011-04-28 20:03:49 +10:00 committed by Alexandre Julliard
parent b27a49c425
commit 7c0cfc964b
2 changed files with 7 additions and 1 deletions

View File

@ -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()

View File

@ -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);