永发信息网

VC 调用dll函数的问题

答案:1  悬赏:50  手机版
解决时间 2021-04-25 23:24
  • 提问者网友:泪痣哥哥
  • 2021-04-25 05:21

用VB做的标准dll(用了标准dll插件),鼠标移动函数代码如下

 

Function yidong() As Integer
MoveMouse 777, 777
End Function

 

VC++ 中调用:

 

HINSTANCE hinstDLL=NULL;
hinstDLL=LoadLibrary("TestDLL.dll");
if (hinstDLL)
{
Connect Proc;
Proc = (Connect)GetProcAddress(hinstDLL,"yidong");
Proc();
FreeLibrary(hinstDLL);

}
else
{

AfxMessageBox("Not found dll");
}

 

 

鼠标是移动了后弹出错误(看图):

最佳答案
  • 五星知识达人网友:时间的尘埃
  • 2021-04-25 06:24
你调用的函数原型是什么???
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯