如何调用delphi开发的DLL函数
delphi调用test.dll中的函数,代码如下,VFP如何实现?procedure Fmttotable(var tablefilename, fmtfilename, curpath: pchar; userid: byte); stdcall; external 'testdll.dll';
procedure showall var tablefilename, fmtfilename, curpath: pchar; prec: integer; pmode: byte); stdcall; external 'testdll.dll';
释放
procedure Desall; stdcall; external 'testdll.dll';
本人用declear后,调用fmttotable 时,提示“test.dll"不能加载