例)軸番号1のアラームコードを取得します。
■ C言語
long Ret;
short Id;
short AlarmCode;
// アラームコードの入力
Ret = SmcWGetAlarmCode( Id , 1, &AlarmCode );
■ Python
Ret = ctypes.c_long()
Id = ctypes.c_short()
AlarmCode = ctypes.c_short()
# アラームコードの入力
Ret.value = csmc.SmcWGetAlarmCode( Id , 1, ctypes.byref(AlarmCode) )