Rappel EstUnFauxTableau(NomModule : Caractere, NomTypeOuInterface : Caractere, NomNatif : Caractere, Etat : Booleen Sortie);
Un faux tableau se transforme en un type Binaire ou Caractere au lieu du type Tableau.
Si le type ou l'interface est un faux tableau, le paramètre Etat doit être renseigné à Vrai.
La valeur de retour doit suivre la convention de fonctionnement de l'énuméré RappelReponse.
/****************************************************************/
Rappel IIntegrationClient.EstUnFauxTableau(NomModule : Caractere, ? : Caractere, NomNatif : Caractere, Etat : Booleen Sortie)
/* Objet : Retourne Vrai s'il s'agit d'un faux tableau. */
/****************************************************************/
Debut
Si NomModule=="MonModule" Alors
Si NomNatif=="MonTypeNatif" Alors
Etat=Vrai;
Retourner RappelSucces;
Fin Si
Fin Si
Retourner RappelIgnore;
Fin Rappel
- | - | - | - | - | - | - | - | - |