L luoyy2000 Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-14 #2 function FunctionName; stdcall;external 'c:/windows/system/theDLL.DLL';<br>
涛 涛子^_^ Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-14 #3 在申明函数的地方,引用:<br>function funName(vParam: string) : Integer;stdcall; external 'DLLNAME.DLL';<br>就可以了<br>
在申明函数的地方,引用:<br>function funName(vParam: string) : Integer;stdcall; external 'DLLNAME.DLL';<br>就可以了<br>
F fly2003 Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-14 #4 function Min(x,y:integer):integer;stdcall; external '动态连接库路经/.dll'
N newsea008 Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-14 #5 要把编写的动态连接库放在哪?不好意思再问一下。<br>
Z ztaif Unregistered / Unconfirmed GUEST, unregistred user! 2003-10-14 #6 放在程序运行的目录下,<br><br>然后用 Function Myfun(S:string):integer; stdcall; external 'mydll.dll';<br>这么调用就可以了