Data structure for moving nodes in the tree to a new parent.
typedef struct _TREEMOVE { PRECORDCORE preccMove; /* Record to be moved. */ PRECORDCORE preccNewParent; /* New parent for preccMove. */ PRECORDCORE pRecordOrder; /* Record order for siblings. */ BOOL flMoveSiblings; /* Flag indicating whether to move siblings. */ } TREEMOVE; typedef TREEMOVE * PTREEMOVE ;