Louis Lenders : mscoree: Add stub for CorBindToCurrentRuntime.
Module: wine Branch: master Commit: c57688ee2592804db5eb038c67497cefe9a884c8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c57688ee2592804db5eb038c67... Author: Louis Lenders <xerox_xerox2000(a)yahoo.co.uk> Date: Sun Jun 8 20:03:22 2008 +0000 mscoree: Add stub for CorBindToCurrentRuntime. --- 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 34defdc..0a75722 100644 --- a/dlls/mscoree/mscoree.spec +++ b/dlls/mscoree/mscoree.spec @@ -14,7 +14,7 @@ @ stub CoUninitializeCor @ stub CoUninitializeEE @ stub CollectCtrs -@ stub CorBindToCurrentRuntime +@ stdcall CorBindToCurrentRuntime(wstr ptr ptr ptr) @ stub CorBindToRuntime @ stub CorBindToRuntimeByCfg @ stub CorBindToRuntimeByPath diff --git a/dlls/mscoree/mscoree_main.c b/dlls/mscoree/mscoree_main.c index 4995393..78ef1d3 100644 --- a/dlls/mscoree/mscoree_main.c +++ b/dlls/mscoree/mscoree_main.c @@ -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);
participants (1)
-
Alexandre Julliard