sniper Mon Dec 5 20:25:15 2005 EDT
Modified files:
/php-src/ext/mssql php_mssql.c php_mssql.h
Log:
nuke php3 legacy
http://cvs.php.net/diff.php/php-src/ext/mssql/php_mssql.c?r1=1.160&r2=1.161&ty=u
Index: php-src/ext/mssql/php_mssql.c
diff -u php-src/ext/mssql/php_mssql.c:1.160 php-src/ext/mssql/php_mssql.c:1.161
--- php-src/ext/mssql/php_mssql.c:1.160 Mon Dec 5 18:31:04 2005
+++ php-src/ext/mssql/php_mssql.c Mon Dec 5 20:25:13 2005
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_mssql.c,v 1.160 2005/12/05 23:31:04 sniper Exp $ */
+/* $Id: php_mssql.c,v 1.161 2005/12/06 01:25:13 sniper Exp $ */
#ifdef COMPILE_DL_MSSQL
#define HAVE_MSSQL 1
@@ -47,7 +47,7 @@
static void _mssql_bind_hash_dtor(void *data);
-function_entry mssql_functions[] = {
+zend_function_entry mssql_functions[] = {
PHP_FE(mssql_connect, NULL)
PHP_FE(mssql_pconnect, NULL)
PHP_FE(mssql_close, NULL)
http://cvs.php.net/diff.php/php-src/ext/mssql/php_mssql.h?r1=1.42&r2=1.43&ty=u
Index: php-src/ext/mssql/php_mssql.h
diff -u php-src/ext/mssql/php_mssql.h:1.42 php-src/ext/mssql/php_mssql.h:1.43
--- php-src/ext/mssql/php_mssql.h:1.42 Mon Aug 8 17:32:18 2005
+++ php-src/ext/mssql/php_mssql.h Mon Dec 5 20:25:13 2005
@@ -17,7 +17,7 @@
*/
-/* $Id: php_mssql.h,v 1.42 2005/08/08 21:32:18 fmk Exp $ */
+/* $Id: php_mssql.h,v 1.43 2005/12/06 01:25:13 sniper Exp $ */
#ifndef PHP_MSSQL_H
#define PHP_MSSQL_H
@@ -162,7 +162,7 @@
long cfg_min_error_severity, cfg_min_message_severity;
long connect_timeout, timeout;
zend_bool compatability_mode;
- void (*get_column_content)(mssql_link *mssql_ptr,int offset,pval
*result,int column_type TSRMLS_DC);
+ void (*get_column_content)(mssql_link *mssql_ptr,int offset,zval
*result,int column_type TSRMLS_DC);
long textsize, textlimit, batchsize;
zend_bool datetimeconvert;
HashTable *resource_list, *resource_plist;
@@ -180,7 +180,7 @@
} mssql_field;
typedef struct mssql_result {
- pval **data;
+ zval **data;
mssql_field *fields;
mssql_link *mssql_ptr;
mssql_statement * statement;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php