From fa8a00fc1103e4720bdfa10e2524e4af18cb3aa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristian=20K=C3=B6hntopp?= Date: Fri, 3 Mar 2000 21:51:53 +0000 Subject: [PATCH] Added some english skeleton documentation for the missing PHP4 modules. Documentation includes complete function list, parameters, optional parameters with types. No functional description (yet). git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@20910 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/com.xml | 150 ++++++++++++++++++++++++++++++++++++++++ functions/cybercash.xml | 104 ++++++++++++++++++++++++++++ 2 files changed, 254 insertions(+) create mode 100644 functions/com.xml create mode 100644 functions/cybercash.xml diff --git a/functions/com.xml b/functions/com.xml new file mode 100644 index 0000000000..d498cadf9e --- /dev/null +++ b/functions/com.xml @@ -0,0 +1,150 @@ + + COM support functions for Windows + COM support + + + + These functions are only available on the Windows version of + PHP. These functions have been added in PHP4. + + + + + com_load + + + + Description + + string com_load + string module name + string + server name + + + + + + + + + com_invoke + + + + Description + + mixed com_invoke + resource object + string function_name + mixed + function parameters, ... + + + + + + + + + com_propget + + + + Description + + mixed com_propget + resource object + string property + + + + + + + + com_get + + + + Description + + mixed com_get + resource object + string property + + + + + + + + com_propput + + + + Description + + void com_propput + resource object + string property + mixed value + + + + + + + + com_propset + + + + Description + + void com_propset + resource object + string property + mixed value + + This function is an alias for com_propput. + + + + + + + com_set + + + + Description + + void com_set + resource object + string property + mixed value + + This function is an alias for com_set. + + + + + + + diff --git a/functions/cybercash.xml b/functions/cybercash.xml new file mode 100644 index 0000000000..ede562a749 --- /dev/null +++ b/functions/cybercash.xml @@ -0,0 +1,104 @@ + + Cybercash payment functions + Cybercash + + + + These functions are only available if the interpreter has been + compiled with the + . These + functions have been added in PHP4. + + + + + cybercash_encr + + + + Description + + array cybercash_encr + string wmk + string sk + string inbuff + + The function returns an associative array with the elements + "errcode" and, if "errcode" is false, "outbuff" (string), + "outLth" (long) and "macbuff" (string). + + + + + + + cybercash_decr + + + + Description + + array cybercash_decr + string wmk + string sk + string inbuff + + The function returns an associative array with the elements + "errcode" and, if "errcode" is false, "outbuff" (string), + "outLth" (long) and "macbuff" (string). + + + + + + + + cybercash_base64_encode + + + + Description + + string cybercash_base64_encode + string inbuff + + + + + + + + + + cybercash_base64_decode + + + + Description + + string cybercash_base64_decode + string inbuff + + + + + + + + +