|
|
|
|
|
Procédure WLangage appelée par la fonction CaméraPhoto Procédure WLangage (également nommée "callback") appelée lorsque la photo est enregistrée via la fonction CaméraPhoto. CaméraPhoto(CAM_MaCaméra, CaméraPhoto_Callback)  PROCÉDURE INTERNE CaméraPhoto_Callback(bRéussite est un booléen, CheminPhoto est une chaîne) SI bRéussite = Vrai ALORS IMG_PHOTO = CheminPhoto LIB_CHEMIN_PHOTO = CheminPhoto MaFenêtre.Plan = 3 SINON ToastAffiche("Erreur lors de la prise de photo." + RC + ErreurInfo()) FIN FIN Syntaxe
CaméraPhoto_Callback(<Réussite> , <Chemin de la photo>)
<Réussite> : Booléen - Vrai si la photo a été enregistrée,
- Faux dans le cas contraire. Dans ce cas, la fonction ErreurInfo permet d'obtenir le détail de l'erreur.
<Chemin de la photo> : Chaîne de caractères Chemin de la photo qui vient d'être enregistrée.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|