diff options
author | Egon Schmid <eschmid@php.net> | 2001-12-30 06:46:53 +0000 |
---|---|---|
committer | Egon Schmid <eschmid@php.net> | 2001-12-30 06:46:53 +0000 |
commit | a3e6298de3076cc18f0c6f6c10aec28dc9c8f1a2 (patch) | |
tree | 5820abc79f765755137a2b6435f4dc3886ca5b5a /ext/cybermut/cybermut.c | |
parent | 47e4a02a640322cc1f2136acc0e3abbc9ee43f1b (diff) | |
download | php-git-a3e6298de3076cc18f0c6f6c10aec28dc9c8f1a2.tar.gz |
Fixed some protos.
Diffstat (limited to 'ext/cybermut/cybermut.c')
-rw-r--r-- | ext/cybermut/cybermut.c | 13 |
1 files changed, 3 insertions, 10 deletions
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; |