■VB.NET用
Dim Ret, Eoi As Integer
Eoi = 0 ' EOI送信なし
Ret = GpSrq(Eoi)
■C言語用
DWORD Ret, Eoi;
Eoi = 0; /* EOI送信なし */
Ret = GpSrq(Eoi);
■C#用
uint Ret, Eoi;
Eoi = 0; /* EOI送信なし */
Ret = gpib.Srq(Eoi);
■Python用
Ret, Eoi = ctypes.c_ulong(), ctypes.c_ulong()
Eoi.value = 0 # EOI送信なし
Ret.value = GpibPy.GpSrq(Eoi)