mscoree: Force_get_runtime_info() is not used so remove it.

This commit is contained in:
Francois Gouget 2011-03-16 08:59:13 +01:00 committed by Alexandre Julliard
parent cb5e480faf
commit d007d9feea
2 changed files with 0 additions and 7 deletions

View File

@ -1316,8 +1316,3 @@ HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
return CLR_E_SHIM_RUNTIME;
}
HRESULT force_get_runtime_info(ICLRRuntimeInfo **result)
{
return IUnknown_QueryInterface((IUnknown*)&runtimes[0], &IID_ICLRRuntimeInfo, (void**)result);
}

View File

@ -51,8 +51,6 @@ typedef struct CLRRuntimeInfo
extern HRESULT get_runtime_info(LPCWSTR exefile, LPCWSTR version, LPCWSTR config_file,
DWORD startup_flags, DWORD runtimeinfo_flags, BOOL legacy, ICLRRuntimeInfo **result);
extern HRESULT force_get_runtime_info(ICLRRuntimeInfo **result);
extern HRESULT ICLRRuntimeInfo_GetRuntimeHost(ICLRRuntimeInfo *iface, RuntimeHost **result);
extern HRESULT MetaDataDispenser_CreateInstance(IUnknown **ppUnk);