例)軸番号1のフィードバック出力パルス数のプリセット値を取得します。
■ C言語
long Ret;
int OutPulse ;
// フィードバック出力パルス数入力
Ret = SmcWGetOutPulse( Id , 1, &OutPulse );
■ Python
Ret = ctypes.c_long()
OutPulse = ctypes.c_int()
# フィードバック出力パルス数入力
Ret.value = csmc.SmcWGetOutPulse( Id , 1, ctypes.byref(OutPulse) )