小弟现在需要在VFP中调用第三方的DLL,
现有dll接口函数如下
function authentication(icdev:word;model,block:byte;var key:byte):integer;stdcall;external 'test.dll';
function anticoll(icdev:word;bcnt:byte;var ppSnr:byte;varpRLength:byte):integer;stdcall;external 'test.dll';
请问其中的
word 类型,byte 类型对应VFP中应该是何种类型啊。
------解决方案--------------------------------------------------------
word 类型对应: SHORT 或 INTEGER 或 LONG
byte 类型对应:String
试试吧