I am using Call Library function and Adapt to type with LV8.2. How would the cluster items be assigned for the follwoing structure?
typedef struct job {
char name[AT_BUFFER]; // name of attribute
union {
char *value; // if num_value = 1, attribute value held here
char **values; // if num_values > 1, attribute values held here
} val;
unsigned int num_values; // the number of values pointed to by attr_value
struct job *next; // next attribute in list
} job_t;
where value for AT_BUFFER is defines as
# define AT_BUFFER 1024
Thanks,
Rachana