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
+
+
+
+
+
+
+
+
+