我有一个C ++ dll,在使用CLR注入后正在调用我的C#代码。
这是我的C ++(dll)代码:
#include "stdafx.h"
#include <iostream>
#include <metahost.h>
#include <atlbase.h>
#include <atlcom.h>
#pragma comment(lib, "mscoree.lib")
#define IfFailRet(expr) { hr = (expr); if(FAILED(hr)) return (hr); }
#define IfNullFail(expr) { if (!expr) return (E_FAIL); }
extern "C" int __declspec(dllexport) CALLBACK CallClrMethod(
const WCHAR *AssemblyName,
const WCHAR *TypeName,
const WCHAR *MethodName,
const WCHAR *args,
LPDWORD pdwResult
)
{
int hr = S_OK;
CComPtr<ICLRMetaHost> spHost;
hr = CLRCreateInstance(CLSID_CLRMetaHost, IID_PPV_ARGS(&spHost));
CComPtr<ICLRRuntimeInfo> spRuntimeInfo;
CComPtr<IEnumUnknown> pRunTimes;
IfFailRet(spHost->EnumerateInstalledRuntimes(&pRunTimes));
CComPtr<IUnknown> pUnkRuntime;
while (S_OK == pRunTimes->Next(1, &pUnkRuntime, 0))
{
CComQIPtr<ICLRRuntimeInfo> pp(pUnkRuntime);
if (pUnkRuntime != nullptr)
{
spRuntimeInfo = pp;
break;
}
}
IfNullFail(spRuntimeInfo);
BOOL bStarted;
DWORD dwStartupFlags;
hr = spRuntimeInfo->IsStarted(&bStarted, &dwStartupFlags);
if (hr != S_OK) // sometimes 0x80004001 not implemented
{
spRuntimeInfo = nullptr; //v4.0.30319 //v2.0.50727
hr = spHost->GetRuntime(L"v2.0.50727", IID_PPV_ARGS(&spRuntimeInfo));
bStarted = false;
}
CComPtr<ICLRRuntimeHost> spRuntimeHost;
IfFailRet(spRuntimeInfo->GetInterface(CLSID_CLRRuntimeHost, IID_PPV_ARGS(&spRuntimeHost)));
if (!bStarted)
{
hr = spRuntimeHost->Start();
}
hr = spRuntimeHost->ExecuteInDefaultAppDomain(
AssemblyName,
TypeName,
MethodName,
args,
pdwResult);
return hr;
}
int _tmain(int argc, _TCHAR* argv[])
{
DWORD dwResult;
HRESULT hr = CallClrMethod(
L"D:\\Dev\\CSharpDll\\CSharpDll\\bin\\x64\\Debug\\CSharpDll.dll",
L"CSharpDll.MainClass",
L"EntryPoint",
L"Im successfully called from a C++ dll",
&dwResult);
return 0;
}
BOOL APIENTRY DllMain(HMODULE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch (ul_reason_for_call)
{
case DLL_PROCESS_ATTACH:
CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)_tmain, hModule, NULL, NULL);
break;
case DLL_THREAD_ATTACH:
break;
case DLL_THREAD_DETACH:
break;
case DLL_PROCESS_DETACH:
break;
}
return TRUE;
}
这是我的C#(dll)代码:
using System.Windows.Forms;
namespace CSharpDll
{
public class MainClass
{
public static int EntryPoint(string MessageFromCppDll)
{
MessageBox.Show(MessageFromCppDll);
Form form = new MainForm();
form.ShowDialog();
return 0;
}
}
}
因此,它对于大多数程序和游戏都非常有效,但根本不起作用。 在某些程序上,它什么也没有发生。注入的c ++ dll尝试运行c#代码,但没有任何反应。 我的理论是c ++ dll将不会创建c#dll的实例。
但是有一个选项可以解决此问题:如果将运行时从v4.0.30319更改为v2.0.50727,则可以正常运行。
它不起作用:
hr = spHost->GetRuntime(L"v4.0.30319", IID_PPV_ARGS(&spRuntimeInfo));
有效:
hr = spHost->GetRuntime(L"v2.0.50727", IID_PPV_ARGS(&spRuntimeInfo));
现在我们要解决我的“主要”问题:我必须将.NET版本从4+降低到3.5,因为CLR V2仅支持.NET 2-3.5。这给我的C#(dll)代码带来了问题。
所以现在我要问一个问题:
为什么这不适用于所有程序和游戏? (我的意思是运行时v4.0.30319)。使用CLR RunTimeHost v2.0.50727,它可以工作。
以及如何解决它或更改代码中的某些内容以运行它。
如果你们有任何想法或代码示例,我将非常感谢。