[Contents] [Index] [Help] [Retrace] [Browse <] [Browse >]


NAME
    AttachCxObj -- attach a commodity object to the end of an existing
                   list of objects. (V36)

SYNOPSIS
    AttachCxObj(headObj,co);
                A0      A1

    VOID AttachCxObj(CxObj *,CxObj *);

FUNCTION
    Adds 'co' to the list of objects pointed to by 'headObj'. The
    new object is added at the end of the list.

INPUTS
    headObj - pointer to a list of objects
    co - the object to add to the list

RESULTS
    If 'co' is NULL, this function will record that fact in the
    internal accumulated error of 'headObj'. This error record
    can be retrieved using CxObjError() and cleared using
    ClearCxObjError().

SEE ALSO
    CxObjError(), ClearCxObjError()