|
火山的 @视窗.结构类 中不支持使用文本型, 如何处理? 用指针吗下面这种呢?
#define MAX_SPINDLE 24 这个宏的值是根据系统加载环境不同, 自动判断加载哪一个的 , 它的值 4, 8 ,24
typedef struct odbact2 {
short datano; /* spindle number */
short type; /* dummy */
long data[MAX_SPINDLE]; /* spindle data */
} ODBACT2 ;
还有这种, 宏值得* 数值 的数组
/* cnc_rdzofsr64:read work zero offset value(area specified) */
typedef struct iodbzor64 {
short datano_s; /* start offset number */
short type; /* axis number */
short datano_e; /* end offset number */
short dummy; /* dummy */
REALDATA data[MAX_AXIS*8]; /* offset value */ 宏值得* 数值 的数组
} IODBZOR64; /* In case that the number of axes is MAX_AXIS, the number of data is 7 */
|
|