From 5aa2a8d6bb82f3b070321d04ff93cc508da6724d Mon Sep 17 00:00:00 2001 From: Ron Sluiter Date: Mon, 17 Jul 2000 17:48:55 +0000 Subject: [PATCH] - Removed unused axis "name" member from axis_stat structure. - Removed intial string argument from motor_start_trans_com(). - Removed command line terminator from motor_end_trans_com() arguments. --- motorApp/MotorSrc/motordevCom.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/motorApp/MotorSrc/motordevCom.h b/motorApp/MotorSrc/motordevCom.h index bffd5adf..707b0bff 100644 --- a/motorApp/MotorSrc/motordevCom.h +++ b/motorApp/MotorSrc/motordevCom.h @@ -3,9 +3,9 @@ FILENAME... motordevCom.h USAGE... This file contains definitions and structures that are common to all motor record device support modules. -Version: $Revision: 1.1 $ +Version: $Revision: 1.2 $ Modified By: $Author: sluiter $ -Last Modified: $Date: 2000-02-08 22:18:44 $ +Last Modified: $Date: 2000-07-17 17:48:55 $ */ /* @@ -45,7 +45,6 @@ Last Modified: $Date: 2000-02-08 22:18:44 $ /* Axis status. */ struct axis_stat { - char name; BOOLEAN in_use; /* Indicates axis assigned to a motor record. */ }; @@ -79,8 +78,7 @@ extern long motor_init_com(int, int, struct driver_table *, struct board_stat ***); extern long motor_init_record_com(struct motorRecord *, int, struct driver_table *, struct board_stat *[]); -extern long motor_start_trans_com(struct motorRecord *, struct board_stat *[], - const char *); -extern long motor_end_trans_com(struct motorRecord *, struct driver_table *, char *); +extern long motor_start_trans_com(struct motorRecord *, struct board_stat *[]); +extern long motor_end_trans_com(struct motorRecord *, struct driver_table *); #endif /* INCmotordevComh */