Example

The following example shows how to determine if the OIA indicates that a communications error reminder condition exists.

//-------------------------------------------------------------------
// ECLOIA::IsCommErrorReminder
//
// Determine status of connection 'A' OIA indicator
//-------------------------------------------------------------------
void Sample55() {
 
ECLOIA OIA('A');   // OIA object for connection A
 
if (OIA.IsCommErrorReminder())
  printf("CommErrorReminder.\n");
else
  printf("Not CommErrorReminder.\n");
 
} // end sample
 
//