cvs: php4 /ext/mssql/ php_mssql.c
[email protected] ("Hartmut Holzgraefe")
| Newsgroups | php.version4 |
|---|---|
| Message-ID | <cvshholzgra959120369@cvsserver> |
hholzgra Wed May 24 00:19:29 2000 EDT
Modified files:
/php4/ext/mssql php_mssql.c
Log:
some protos where missing proto keyword
Index: php4/ext/mssql/php_mssql.c
diff -u php4/ext/mssql/php_mssql.c:1.21 php4/ext/mssql/php_mssql.c:1.22
--- php4/ext/mssql/php_mssql.c:1.21 Tue May 23 11:33:40 2000
+++ php4/ext/mssql/php_mssql.c Wed May 24 00:19:29 2000
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_mssql.c,v 1.21 2000/05/23 09:33:40 sas Exp $ */
+/* $Id: php_mssql.c,v 1.22 2000/05/23 22:19:29 hholzgra Exp $ */
#ifdef COMPILE_DL_MSSQL
#include "dl/phpdl.h"
@@ -1034,7 +1034,7 @@
result->cur_row++;
}
-/* {{{ object mssql_fetch_object(int result_id)
+/* {{{ proto object mssql_fetch_object(int result_id)
Returns a psuedo-object of the current row in the result set specified by result_id */
PHP_FUNCTION(mssql_fetch_object)
{
@@ -1046,7 +1046,7 @@
/* }}} */
-/* {{{ array mssql_fetch_array(int result_id)
+/* {{{ proto array mssql_fetch_array(int result_id)
Returns an associative array of the current row in the result set specified by result_id */
PHP_FUNCTION(mssql_fetch_array)
{