NAME
DtShapeGetChildren - Gets a list of the children of the
given shape.
SYNOPSIS
#include <Dt.h>
int DtShapeGetChildren( int shapeID, int *count, int **children)
DESCRIPTION
DtShapeGetChildren() gets a list of the children of
the given shape shapeID. The size of the list is stored
in the address of count and the list of shape ID's of the
children is stored in the buffer children. The caller
should free this list when they are done using a call like:
free(children). A shape will have children if the full
hierarchy mode is chosen for export.
IMPLEMENTATION
DIAGNOSTICS
DtShapeGetChildren() returns 1 on success, 0 on failure.
FILES
Link with -lDtOMio