mscoree: Add stub for CorBindToCurrentRuntime.

This commit is contained in:
Louis Lenders 2008-06-08 20:03:22 +00:00 committed by Alexandre Julliard
parent a1a5d8d02a
commit c57688ee25
2 changed files with 7 additions and 1 deletions

View File

@ -14,7 +14,7 @@
@ stub CoUninitializeCor
@ stub CoUninitializeEE
@ stub CollectCtrs
@ stub CorBindToCurrentRuntime
@ stdcall CorBindToCurrentRuntime(wstr ptr ptr ptr)
@ stub CorBindToRuntime
@ stub CorBindToRuntimeByCfg
@ stub CorBindToRuntimeByPath

View File

@ -312,6 +312,12 @@ HRESULT WINAPI CorBindToRuntimeEx(LPWSTR szVersion, LPWSTR szBuildFlavor, DWORD
return E_NOTIMPL;
}
HRESULT WINAPI CorBindToCurrentRuntime(LPCWSTR filename, REFCLSID rclsid, REFIID riid, LPVOID *ppv)
{
FIXME("(%s, %s, %s, %p): stub\n", debugstr_w(filename), debugstr_guid(rclsid), debugstr_guid(riid), ppv);
return E_NOTIMPL;
}
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
{
FIXME("(%p, %p, %p): stub\n", rclsid, riid, ppv);