MPIRecorderMessage

MPIRecorderMessage

 

typedef enum {

    MPIRecorderMessageRECORDER_INVALID,
    MPIRecorderMessageSTARTED,
    MPIRecorderMessageSTOPPED,
    MPIRecorderMessageNOT_CONFIGURED,
} MPIRecorderMessage;
Description
  MPIRecorderMessageRECORDER_INVALID
  Meaning The MPIRecorder handle passed to an MPIRecorder method is invalid.
  Possible Causes Either the handle was never initialized or the MPIRecorderCreate method failed.
  Recommendations Use MPIRecorderValidate after MPIRecorderCreate to see if the returned handle is valid.
   
  MPIRecorderMessageSTARTED
  Meaning  
  Possible Causes An MPIRecorder method that assumes that recorder has not been started has been called while the recorder was recording data.
  Recommendations .
   
  MPIRecorderMessageSTOPPED
  Meaning .
  Possible Causes An MPIRecorder method that assumes that recorder has been started has been called while the recorder was not recording data.
  Recommendations .
   
  MPIRecorderMessageNOT_CONFIGURED
  Meaning .
  Possible Causes An MPIRecorder method has been called that assumes that the recorder has been configured. mpiRecorderStart is the most common method to return this error code.
  Recommendations .
Sample Code
 
MPIControl      control;
MPIRecorder   recorder;
long                returnValue;
.

recorder =
	mpRecorderCreate(control);
returnValue =
	mpiRecorderValidate(recorder);
 
See Also mpiRecorderCreate | mpiRecorderValidate