Y
yuyifeichina
Unregistered / Unconfirmed
GUEST, unregistred user!
我用动态库时,程序一运行就有一个对话框:说什么找不到FUNCTION的入口,这是什么原因?动态库如下,我只是用一个试下:
unit Unit1;
interface
uses windows,classes,sysutils,forms,comctrls,db,dbtables,menus;
function SetComm(CType,Port:byte;baud,SrnSN:string):byte; stdcall;
implementation
function SetComm(CType,Port: byte;baud ,SrnSn:string):byte; external 'SendTOLed.dll';
end.
程序出错说:无没找到SETCOMM的入口点,是什么地方出错?有那个高手说的明白点,很感谢!
unit Unit1;
interface
uses windows,classes,sysutils,forms,comctrls,db,dbtables,menus;
function SetComm(CType,Port:byte;baud,SrnSN:string):byte; stdcall;
implementation
function SetComm(CType,Port: byte;baud ,SrnSn:string):byte; external 'SendTOLed.dll';
end.
程序出错说:无没找到SETCOMM的入口点,是什么地方出错?有那个高手说的明白点,很感谢!