NO FRAMES

CPXaddfpdest

public int CPXaddfpdest(CPXCENVptr env, CPXCHANNELptr channel, CPXFILEptr fileptr)
Definition file: cplex.h

The routine CPXaddfpdest adds a file to the list of message destinations for a channel. The destination list for all CPLEX-defined channels is initially empty.

Example

 CPXaddfpdest (env, mychannel, fileptr);
 

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

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

channel

A pointer to the channel for which destinations are to be added.

fileptr

A pointer to the file to be added to the destination list. Before calling this routine, obtain this pointer with a call to CPXfopen.

Returns:

The routine returns zero if successful and nonzero if an error occurs.