Commit c57688ee authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

mscoree: Add stub for CorBindToCurrentRuntime.

parent a1a5d8d0
......@@ -14,7 +14,7 @@
@ stub CoUninitializeCor
@ stub CoUninitializeEE
@ stub CollectCtrs
@ stub CorBindToCurrentRuntime
@ stdcall CorBindToCurrentRuntime(wstr ptr ptr ptr)
@ stub CorBindToRuntime
@ stub CorBindToRuntimeByCfg
@ stub CorBindToRuntimeByPath
......
......@@ -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);
......
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