Exemple
L'exemple suivant montre comment déterminer si l'OIA indique qu'une condition de rappel d'erreur de communication existe.
//------------------------------------------------------------------- // 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 //