delphi调用dll无法启动 Delphi如何调用vc写的dll?
Delphi如何调用vc写的dll?DELPHI写,标准接口DLL?在Delphi中编写标准的dll接口。函数life必须是Stdcall,否则不能在VB中调用。函数open(B:integer):i
Delphi如何调用vc写的dll?
DELPHI写,标准接口DLL?
在Delphi中编写标准的dll接口。函数life必须是Stdcall,否则不能在VB中调用。函数open(B:integer):integer stdcallvar I:integerbegin result:=biendvb函数声明并调用public declare sub open lib “project1”(ByVal B as long)as long