没甚么大问题,关键是怎样用Delphi改写VC的动态库头文件,请参考:
extern "C" DLLEXP __stdcall
; ; ; ;long Set_Mode(int AR_ID,int Price_Mode,int Price_Type,int Price);
function Set_Mode(AR_id,price_mode,price_type,price:integer)
; ; ; ;:integer;stdcall;external'JBC3000P.dll';
另外,要注意单独使用一个UNIT单元来声明库函数,这样就可以在程序中任意地方使用
声明的库函数了。