eschmid Fri Feb 2 07:49:59 2001 EDT
Modified files:
/php4/ext/mnogosearch php_mnogo.c
Log:
Fixed protos.
Index: php4/ext/mnogosearch/php_mnogo.c
diff -u php4/ext/mnogosearch/php_mnogo.c:1.4 php4/ext/mnogosearch/php_mnogo.c:1.5
--- php4/ext/mnogosearch/php_mnogo.c:1.4 Fri Feb 2 04:54:14 2001
+++ php4/ext/mnogosearch/php_mnogo.c Fri Feb 2 07:49:58 2001
@@ -1,11 +1,11 @@
/* $Source: /local/repository/php4/ext/mnogosearch/php_mnogo.c,v $ */
-/* $Id: php_mnogo.c,v 1.4 2001/02/02 12:54:14 gluke Exp $ */
+/* $Id: php_mnogo.c,v 1.5 2001/02/02 15:49:58 eschmid Exp $ */
/*
+----------------------------------------------------------------------+
| PHP version 4.0 |
+----------------------------------------------------------------------+
- | Copyright (c) 1997, 1998, 1999, 2000 The PHP Group |
+ | Copyright (c) 1997, 1998, 1999, 2000, 2001 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
@@ -233,7 +233,7 @@
/* }}} */
-/* {{{ proto int udm_set_agent_param(agent,var,val)
+/* {{{ proto int udm_set_agent_param(string agent, int var, string val)
Set mnoGoSearch agent session parameters */
DLEXPORT PHP_FUNCTION(udm_set_agent_param)
{
@@ -363,8 +363,8 @@
/* }}} */
-/* {{{ proto int udm_find(int agent_identifier,string query)
- perform search */
+/* {{{ proto int udm_find(int agent_identifier, string query)
+ Perform search */
DLEXPORT PHP_FUNCTION(udm_find)
{
pval ** yyquery, ** yyagent;
@@ -391,7 +391,7 @@
/* }}} */
-/* {{{ proto int udm_get_res_field(int res_identifier,int row_num,const int
field_name)
+/* {{{ proto int udm_get_res_field(int res_identifier, int row_num, int field_name)
Fetch mnoGoSearch result field */
DLEXPORT PHP_FUNCTION(udm_get_res_field){
pval **yyres, **yyrow_num, **yyfield_name;
@@ -440,8 +440,8 @@
/* }}} */
-/* {{{ proto int udm_get_res_param(int res_identifier, const int param_id)
- mnoGoSearch result parameters */
+/* {{{ proto int udm_get_res_param(int res_identifier, int param_id)
+ mnoGoSearch result parameters */
DLEXPORT PHP_FUNCTION(udm_get_res_param)
{
pval ** yyres, ** yyparam;
@@ -474,7 +474,7 @@
/* {{{ proto int udm_free_res(int res_identifier)
- mnoGoSearch free result */
+ mnoGoSearch free result */
DLEXPORT PHP_FUNCTION(udm_free_res)
{
pval ** yyres;
@@ -498,7 +498,7 @@
/* {{{ proto int udm_errno(int agent_identifier)
- mnoGoSearch error number */
+ mnoGoSearch error number */
DLEXPORT PHP_FUNCTION(udm_errno)
{
pval ** yyagent;
@@ -521,7 +521,7 @@
/* {{{ proto int udm_error(int agent_identifier)
- mnoGoSearch error message */
+ mnoGoSearch error message */
DLEXPORT PHP_FUNCTION(udm_error)
{
pval ** yyagent;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]