eschmid Sat Jan 27 11:48:58 2001 EDT
Modified files:
/php4/ext/mssql php_mssql.c
Log:
Fixed some protos.
Index: php4/ext/mssql/php_mssql.c
diff -u php4/ext/mssql/php_mssql.c:1.36 php4/ext/mssql/php_mssql.c:1.37
--- php4/ext/mssql/php_mssql.c:1.36 Thu Jan 4 09:29:50 2001
+++ php4/ext/mssql/php_mssql.c Sat Jan 27 11:48:58 2001
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_mssql.c,v 1.36 2001/01/04 17:29:50 fmk Exp $ */
+/* $Id: php_mssql.c,v 1.37 2001/01/27 19:48:58 eschmid Exp $ */
#ifdef COMPILE_DL_MSSQL
#define HAVE_MSSQL 1
@@ -796,7 +796,7 @@
}
/* {{{ proto int mssql_fetch_batch(string result_index)
- returns the next batch of records*/
+ Returns the next batch of records */
PHP_FUNCTION(mssql_fetch_batch) {
zval **mssql_result_index;
mssql_result *result;
@@ -836,7 +836,7 @@
}
/* }}} */
-/* {{{ proto int mssql_query(string query [, int conn_id [, int batch_size = 0]])
+/* {{{ proto int mssql_query(string query [, int conn_id [, int batch_size]])
Perform an SQL query on a MS-SQL server database */
PHP_FUNCTION(mssql_query)
{
@@ -969,7 +969,7 @@
/* }}} */
/* {{{ proto int mssql_rows_affected(int conn_id)
- returns the number of records affected by the query*/
+ Returns the number of records affected by the query */
PHP_FUNCTION(mssql_rows_affected) {
zval **mssql_link_index;
mssql_link *mssql_ptr;
--
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]