version 1.5, 2010/03/05 11:20:09
|
version 1.18, 2010/05/25 18:09:44
|
Line 1
|
Line 1
|
/* |
/* |
================================================================================ |
================================================================================ |
RPL/2 (R) version 4.0.12 |
RPL/2 (R) version 4.0.16 |
Copyright (C) 1989-2010 Dr. BERTRAND Joël |
Copyright (C) 1989-2010 Dr. BERTRAND Joël |
|
|
This file is part of RPL/2. |
This file is part of RPL/2. |
Line 20
|
Line 20
|
*/ |
*/ |
|
|
|
|
|
#define MESSAGES |
#include "rpl.conv.h" |
#include "rpl.conv.h" |
|
|
|
|
Line 1209 messages(struct_processus *s_etat_proces
|
Line 1210 messages(struct_processus *s_etat_proces
|
} |
} |
|
|
break; |
break; |
|
} |
|
|
|
case d_ex_enregistrement_inexistant : |
|
{ |
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
chaine = "+++Erreur : Enregistrement inexistant"; |
|
} |
|
else |
|
{ |
|
chaine = "+++Error : Record not found"; |
|
} |
|
|
|
break; |
|
} |
|
|
|
case d_ex_clef_inexistante : |
|
{ |
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
chaine = "+++Erreur : Clef inexistante"; |
|
} |
|
else |
|
{ |
|
chaine = "+++Error : Key not found"; |
|
} |
|
|
|
break; |
|
} |
|
|
|
case d_ex_nom_implicite : |
|
{ |
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
chaine = "+++Erreur : Nom implicite indéfini"; |
|
} |
|
else |
|
{ |
|
chaine = "+++Error : Undefined implicit name"; |
|
} |
|
|
|
break; |
|
} |
|
|
|
case d_ex_version_bibliotheque : |
|
{ |
|
if ((*s_etat_processus).langue == 'F') |
|
{ |
|
chaine = "+++Erreur : Version de bibliothèque incompatible"; |
|
} |
|
else |
|
{ |
|
chaine = "+++Error : Library version mismatch"; |
|
} |
|
|
|
break; |
} |
} |
|
|
case -1 : // Fonction externe |
case -1 : // Fonction externe |