主题:[原创]delphi调用c++ Builder制作的dll
unit usbdll;
interface
function Integral(iTime:integer):variant; stdcall;
//procedure Spectrum(var data:integer); stdcall;
implementation
function Integral;external 'Cont375.dll' name 'Integral';
//procedure Spectrum;external 'Cont375.dll' name 'Spectrum';
end.
提示为:'无法定位程序输入点 Integral 于动态链接库Cont385.dll上'.
各位富翁多指教啊!我的调用程序是可以肯定没问题的.因为以前用vc做的动态库调用是没问题的.
interface
function Integral(iTime:integer):variant; stdcall;
//procedure Spectrum(var data:integer); stdcall;
implementation
function Integral;external 'Cont375.dll' name 'Integral';
//procedure Spectrum;external 'Cont375.dll' name 'Spectrum';
end.
提示为:'无法定位程序输入点 Integral 于动态链接库Cont385.dll上'.
各位富翁多指教啊!我的调用程序是可以肯定没问题的.因为以前用vc做的动态库调用是没问题的.