FLDget_typed_node_data
Synopsis
returns an array containing the node data, converted to the desired type
int FLDget_typed_node_data (field, comp, type, node_data, size, mode)(
OMobj_id field,
int comp,
int *type,
char **node_data,
xp_long *size,
int mode);int FLDget_typed_node_data_n(field, comp, type, node_data, size, mode)
OMobj_id field;
int comp;
int *type, *size;
char **node_data;
int mode;Description
FLDget_typed_node_data returns an array containing the node data, converted to the desired type.
Parameters
A pointer to the desired data type for node_data. You store the desired type, according to the table below, into *type. Possible values are:
Address of a pointer to an unknown (void) type. A pointer to the node_data array is stored into *node_data. You must call ARRfree() on the resulting pointer when you are done using it.
The access mode for the node_data array:
The program intends to write to the array, completely replacing it, but not read it.
The program requires a copy of the array for its own, private use (reading or writing).
Examples
Files
See Also