mscoree: Add stub for CorBindToCurrentRuntime.
This commit is contained in:
parent
a1a5d8d02a
commit
c57688ee25
|
@ -14,7 +14,7 @@
|
||||||
@ stub CoUninitializeCor
|
@ stub CoUninitializeCor
|
||||||
@ stub CoUninitializeEE
|
@ stub CoUninitializeEE
|
||||||
@ stub CollectCtrs
|
@ stub CollectCtrs
|
||||||
@ stub CorBindToCurrentRuntime
|
@ stdcall CorBindToCurrentRuntime(wstr ptr ptr ptr)
|
||||||
@ stub CorBindToRuntime
|
@ stub CorBindToRuntime
|
||||||
@ stub CorBindToRuntimeByCfg
|
@ stub CorBindToRuntimeByCfg
|
||||||
@ stub CorBindToRuntimeByPath
|
@ stub CorBindToRuntimeByPath
|
||||||
|
|
|
@ -312,6 +312,12 @@ HRESULT WINAPI CorBindToRuntimeEx(LPWSTR szVersion, LPWSTR szBuildFlavor, DWORD
|
||||||
return E_NOTIMPL;
|
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)
|
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID* ppv)
|
||||||
{
|
{
|
||||||
FIXME("(%p, %p, %p): stub\n", rclsid, riid, ppv);
|
FIXME("(%p, %p, %p): stub\n", rclsid, riid, ppv);
|
||||||
|
|
Loading…
Reference in New Issue