Setup Example

image\head10.gif VB.NET

Dim Ret, Eoi As Integer

Eoi = 1  ' With EOI

Ret = GpSrq(Eoi)

 

image\head10.gif C

DWORD Ret, Eoi;

Eoi = 1; /* With EOI*/

Ret = GpSrq(Eoi);

 

image\head10.gif C#

uint Ret, Eoi;

Eoi = 1; /* With EOI*/

Ret = gpib.Srq(Eoi);

 

image\head10.gif Python

Ret, Eoi = ctypes.c_ulong(), ctypes.c_ulong()

Eoi.value = 1 # With EOI

Ret.value = GpibPy.GpSrq(Eoi)