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


    NAME
        DeleteRexxMsg - Releases a rexxmsg structure created by createrexxmsg()

    SYNOPSIS
        DeleteRexxMsg(packet)
                      A0

        VOID DeleteRexxMsg(struct rexxmsg *);

    FUNCTION
        The function releases an ARexx message packet that was allocated
        with createrexxmsg().  any argument fields in the rexxmsg structure
        should be cleared before calling this function as it does
        not release them for you.

    INPUTS
        packet - A pointer to a rexxmsg structure allocated by createrexxmsg()

    EXAMPLE
        if (rmsg=CreateRexxMsg(myport,"myapp","MYAPP_PORT"))
        {
                /* Do my think with rmsg */
                ClearRexxMsg(rmsg,16);  /* We may not want to clear all 16 */
                DeleteRexxMsg(rmsg);
        }

    SEE ALSO
        createrexxmsg(), clearrexxmsg()

    BUGS