Next: struct x1f4_datatype_type, Up: Application Interface Types [Index]
typedef struct x1f4_caselink_type { struct x1f4_caselink_type *caselink_data; struct x1f4_nodetype_type *nodetype_data; void *data; const void *text; } x1f4_caselink_type;
The x1f4_caselink_type
record describes a processing list item for
operations such as non recursive copy.
See Non Recursive Data Replication.
caselink_data
The caselink_data
field indicates the subsequent item. It is
NULL
if there are no more items in the processing list.
nodetype_data
The nodetype_data
field is the struct x1f4_nodetype_type
description of the data type of the object(s) associated with the list item.
data
The data
field is processed object, fully constructed but not yet set
up. For copying operations, it is the copy being made.
text
The text
field is the reference object. For copying operations, it is
the object being copied.