From: Egon Schmid Date: Sun, 30 Dec 2001 06:46:53 +0000 (+0000) Subject: Fixed some protos. X-Git-Tag: PRE_ISSET_PATCH~364 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3e6298de3076cc18f0c6f6c10aec28dc9c8f1a2;p=php Fixed some protos. --- diff --git a/ext/cybermut/cybermut.c b/ext/cybermut/cybermut.c index 1da3ad3074..fe97ff6782 100644 --- a/ext/cybermut/cybermut.c +++ b/ext/cybermut/cybermut.c @@ -86,9 +86,7 @@ PHP_MINFO_FUNCTION(cybermut) /* }}} */ /* {{{ proto string cybermut_creerformulairecm(string url_CM, string version, string TPE, string montant, string ref_commande, string texte_libre, string url_retour, string url_retour_ok, string url_retour_err, string langue, string code_societe, string texte_bouton) - Return a string containing source HTML of the form of request for payment. - This result corresponds to the last parameter "formulaire" of the original function - which was removed */ + Returns a string containing source HTML of the form of request for payment. This result corresponds to the last parameter "formulaire" of the original function which was removed */ PHP_FUNCTION(cybermut_creerformulairecm) { zval **url_CM, **version, **TPE, **montant, **ref_commande, **texte_libre, **url_retour, **url_retour_ok, **url_retour_err, **langue, **code_societe, **texte_bouton; @@ -121,9 +119,7 @@ PHP_FUNCTION(cybermut_creerformulairecm) /* }}} */ /* {{{ proto bool cybermut_testmac(string code_MAC, string version, string TPE, string cdate, string montant, string ref_commande, string texte_libre, string code_retour) - Return a boolean attesting that the authentification proceeded well - true : the received message is authenticated - false: if not */ + Returns a boolean attesting that the authentification proceeded well. TRUE if the received message is authenticated and FALSE if not */ PHP_FUNCTION(cybermut_testmac) { zval **code_MAC, **version, **TPE, **cdate, **montant, **ref_commande, **texte_libre, **code_retour; @@ -154,10 +150,7 @@ PHP_FUNCTION(cybermut_testmac) /* }}} */ /* {{{ proto string cybermut_creerreponsecm(string phrase) - Return a string containing the message of acknowledgement of delivery - (headers and body of the message). - This result corresponds to the last parameter "reponse" of the original function - which was removed. */ + Returns a string containing the message of acknowledgement of delivery (headers and body of the message). This result corresponds to the last parameter "reponse" of the original function which was removed */ PHP_FUNCTION(cybermut_creerreponsecm) { zval **phrase;