VB.NET
Dim Ret, Eoi As Integer
Eoi = 1 ' With EOI
Ret = GpSrq(Eoi)
C
DWORD Ret, Eoi;
Eoi = 1; /* With EOI*/
Ret = GpSrq(Eoi);
C#
uint Ret, Eoi;
Eoi = 1; /* With EOI*/
Ret = gpib.Srq(Eoi);
Python
Ret, Eoi = ctypes.c_ulong(), ctypes.c_ulong()
Eoi.value = 1 # With EOI
Ret.value = GpibPy.GpSrq(Eoi)