CPXdelfpdest


Description

The routine CPXdelfpdest() removes a file from the list of message destinations for a channel. Failure occurs when the channel does not exist or the file pointer is not in the message destination list.

Return Value

The routines return a zero on success, and a nonzero if an error occurs.

Synopsis

  int CPXdelfpdest (CPXCENVptr env,
                    CPXCHANNELptr channel,
                    CPXFILEptr fileptr);

Arguments

CPXCENVptr env

The pointer to the CPLEX environment as returned by CPXopenCPLEX().

CPXCHANNELptr channel

The pointer to the channel for which destinations are to be deleted.

CPXFILEptr fileptr

A CPXFILEptr for the file to be removed from the destination list.

Example

  CPXdelfpdest (env, mychannel, fileptr);

See Also

Example lpex5.c in the CPLEX User's Manual.

Previous Page: CPXdelcols Return to Top Next Page: CPXdelfuncdest