F
fjhst
Unregistered / Unconfirmed
GUEST, unregistred user!
我快被这个鸡毛小问题搞死了!
我在c++Builder做了一个DLL(MyDll.dll):
...
extern "C" __declspec(dllexport) int Test(int x);
...
int Test(int x)
{
ShowMessage("****!!!");
return 3;
}
然后再delphi里调用:
...
function Test(x: Integer):Integer;stdcall;external 'MyDll/MyDll.dll';
...
//调用
...
Test(3);
...
运行, 出错:无法定位程序输入点Test于动态链接库MyDll/MyDll.dll?
啊啊啊!我死了!帮我一下吧!
MyDll.dll文件以拷贝到相应目录下了。。。
我在c++Builder做了一个DLL(MyDll.dll):
...
extern "C" __declspec(dllexport) int Test(int x);
...
int Test(int x)
{
ShowMessage("****!!!");
return 3;
}
然后再delphi里调用:
...
function Test(x: Integer):Integer;stdcall;external 'MyDll/MyDll.dll';
...
//调用
...
Test(3);
...
运行, 出错:无法定位程序输入点Test于动态链接库MyDll/MyDll.dll?
啊啊啊!我死了!帮我一下吧!
MyDll.dll文件以拷贝到相应目录下了。。。