■VB.NET用
Dim Ret, Stp As Integer
Stp = 0 ' ESCキーを無視
Ret = GpStstop(Stp)
■C言語用
DWORD Ret, Stp;
Stp = 0; /* ESCキーを無視 */
Ret = GpStstop(Stp);
■C#用
uint Ret, Stp;
Stp = 0; /* ESCキーを無視 */
Ret = gpib.Ststop(Stp);
■Python用
Ret, Stp = ctypes.c_ulong(), ctypes.c_ulong()
Stp.value = 0 # ESCキーを無視
Ret.value = GpibPy.GpStstop(Stp)