能力值:
( LV3,RANK:20 )
|
-
-
2 楼
getprocaddress 是对dll导出函数来的吧,exe没有导出函数,所以没法搞,只能动态搜索函数地址,或者硬编码
|
能力值:
( LV3,RANK:30 )
|
-
-
3 楼
感谢回覆,已解决
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
经典中国论坛回帖模式。。 楼主你怎么解决的啊
|
能力值:
( LV3,RANK:30 )
|
-
-
5 楼
dplxin
经典中国论坛回帖模式。。
楼主你怎么解决的啊
// 反射获取函数指针 Type^ type = Type::GetType("WindowsFormsApp1.Form1, WindowsFormsApp1");//namespace.class, namespace MethodInfo^ method = type->GetMethod("CallMe", BindingFlags::Public | BindingFlags::Static); void* address = (void*)method->MethodHandle.GetFunctionPointer(); // call function typedef void func(); func * f; f = (func*)address; f(); 参考: https://blog.csdn.net/xfgryujk/article/details/79053312
|
|
|