停止采集函数StopIntr

VC/C++Builder下定义原型:
int __stdcall StopIntr(void);

VC/C++Builder下使用示例:
StopIntr();

VB下定义方式:
Declare Function DllStopIntr Lib "ADCard.Dll" Alias "_StopIntr@0" () As Long

VB下使用示例:
I = DllStopIntr()

Delphi下定义方式
function StopIntr :Longword; stdcall; external 'adcard.dll' name '_StopIntr@0';

Delphi下使用示例
I := StopIntr;

功能及参数说明:

此函数停止单缓冲区或多缓冲区方式的采集。在成功调用StartIntr()或StartSnapshot()之后才需要调用此函数。在应用程序退出前,应保证调用此函数,否则下次采集可能不正确。函数成功调用时将返回1(=ADCard_Sucess),否则将返回0(=ADCard_Error)。