Description
The CPXaddfpdest() routine adds a file to the list of message destinations for a channel. The destination list for all CPLEX-defined channels is initially empty.Return Value
The routines return a zero on success, and a nonzero if an error occurs.Synopsis
int CPXaddfpdest (CPXENVptr env,
CPXCHANNELptr channel,
CPXFILEptr fileptr);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
CPXCHANNELptr channelThe pointer to the channel for which destinations are to be added.
CPXFILEptr fileptrA pointer to the file to be added to the destination list. Before calling this routine, obtain this pointer with a call to
CPXfopen().
CPXaddfpdest (env, mychannel, fileptr);