summaryrefslogtreecommitdiff
path: root/ext/mcve
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2002-03-07 00:13:41 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2002-03-07 00:13:41 +0000
commit08ce0598c56c8feb34b19bc3054b23c0fe736677 (patch)
treee6e78ba384440e127ea2b7f3135c7c0f8537fd5c /ext/mcve
parentd88701e3e6d539df0b20bf380434b817e79d55ac (diff)
downloadphp-git-08ce0598c56c8feb34b19bc3054b23c0fe736677.tar.gz
more proto stuff
Diffstat (limited to 'ext/mcve')
-rw-r--r--ext/mcve/mcve.c26
1 files changed, 9 insertions, 17 deletions
diff --git a/ext/mcve/mcve.c b/ext/mcve/mcve.c
index 274bdc51f8..fb94706f46 100644
--- a/ext/mcve/mcve.c
+++ b/ext/mcve/mcve.c
@@ -214,7 +214,7 @@ PHP_MINFO_FUNCTION(mcve)
/* }}} */
-/* {{{ proto int mcve_initengine(char *location)
+/* {{{ proto int mcve_initengine(string location)
Ready the client for IP/SSL Communication */
PHP_FUNCTION(mcve_initengine)
{
@@ -1567,10 +1567,8 @@ PHP_FUNCTION(mcve_liststats)
}
/* }}} */
-/* {{{ proto int mcve_initusersetup()
-
- Initialize structure to store user data
-*/
+/* {{{ proto resource mcve_initusersetup(void)
+ Initialize structure to store user data */
PHP_FUNCTION(mcve_initusersetup)
{
MCVE_UserSetup *usersetup;
@@ -1583,10 +1581,8 @@ PHP_FUNCTION(mcve_initusersetup)
}
/* }}} */
-/* {{{ proto void mcve_deleteusersetup(int usersetup)
-
- Deallocate data associated with usersetup structure
-*/
+/* {{{ proto void mcve_deleteusersetup(resource usersetup)
+ Deallocate data associated with usersetup structure */
PHP_FUNCTION(mcve_deleteusersetup)
{
MCVE_UserSetup *usersetup;
@@ -1605,10 +1601,8 @@ PHP_FUNCTION(mcve_deleteusersetup)
}
/* }}} */
-/* {{{ proto int mcve_adduserarg(int usersetup, int argtype, string argval)
-
- Add a value to user configuration structure
-*/
+/* {{{ proto int mcve_adduserarg(resource usersetup, int argtype, string argval)
+ Add a value to user configuration structure */
PHP_FUNCTION(mcve_adduserarg)
{
MCVE_UserSetup *usersetup;
@@ -1631,10 +1625,8 @@ PHP_FUNCTION(mcve_adduserarg)
}
/* }}} */
-/* {{{ proto string mcve_getuserarg(int usersetup, int argtype)
-
- Grab a value from usersetup structure
-*/
+/* {{{ proto string mcve_getuserarg(resource usersetup, int argtype)
+ Grab a value from usersetup structure */
PHP_FUNCTION(mcve_getuserarg)
{
MCVE_UserSetup *usersetup;