From 0817840cb9fbe93b50743553538a8a10177c1388 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Wed, 16 May 2001 08:00:08 +0000 Subject: [PATCH] Removed double addref lighten some extra unused tag Wait for Jade's validation. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@47559 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/com.xml | 43 +++++++------------------------------------ 1 file changed, 7 insertions(+), 36 deletions(-) diff --git a/functions/com.xml b/functions/com.xml index df58bfa34b..edc6ffd659 100644 --- a/functions/com.xml +++ b/functions/com.xml @@ -17,40 +17,34 @@ $obj = new COM("server.object") - + Description The COM class provides a framework to integrate (D)COM components into your php scripts. - - Properties - - - + Methods string COM::COM - string module name - string server name + string module_name + string server_name int codepage - - Description - COM constructor. Parameters: + COM class constructor. Parameters: - module name + module_name name or class-id of the requested component. - server name + server_name name of the DCOM server from which the component should be fetched. @@ -74,29 +68,6 @@ - - - - string COM::AddRef - - - - Description - - Increases the components reference counter. - - - - - string COM::Release - - - - Description - - Decreases the components reference counter. - - COM example (1)