]> granicus.if.org Git - php/commitdiff
More cleanup...
authorZeev Suraski <zeev@php.net>
Fri, 17 Dec 1999 21:13:15 +0000 (21:13 +0000)
committerZeev Suraski <zeev@php.net>
Fri, 17 Dec 1999 21:13:15 +0000 (21:13 +0000)
ext/aspell/aspell.c
ext/aspell/php_aspell.h
ext/dav/dav.c
ext/mssql/php_mssql.c

index c96213b381f890d81546a231736f4dc8f71582bc..6e8912557808196c024bd125bedb1a50472424c6 100644 (file)
@@ -55,16 +55,18 @@ zend_module_entry aspell_module_entry = {
 DLEXPORT zend_module_entry *get_module(void) { return &aspell_module_entry; }
 #endif
 
+static void php_aspell_close(aspell *sc)
+{
+       aspell_free(sc);
+}
+
+
 PHP_MINIT_FUNCTION(aspell)
 {
-    le_aspell = register_list_destructors(php3_aspell_close,NULL);
+    le_aspell = register_list_destructors(php_aspell_close,NULL);
        return SUCCESS;
 
 }
-void php3_aspell_close(aspell *sc)
-{
-       aspell_free(sc);
-}
 
 /* {{{ proto int aspell_new(string master[, string personal])
    Load a dictionary */
index 787412dddba555b96afd8adc5ffc6232b98ed0d8..cdc0ce41774fd84cc13cb03a0d431e39b8838765 100644 (file)
@@ -38,7 +38,6 @@ extern zend_module_entry aspell_module_entry;
 
 extern PHP_MINIT_FUNCTION(aspell);
 extern PHP_MINFO_FUNCTION(aspell);
-extern void php3_aspell_close();
 
 PHP_FUNCTION(aspell_new);
 PHP_FUNCTION(aspell_check);
index ca57c6ecb25c17769e5773d39d40c0a1de76ef25..ea936300a4f900d26b3b02390e0cd32961f4661b 100644 (file)
@@ -50,20 +50,20 @@ DWORD PHPDAVTls;
 static int numthreads=0;
 
 typedef struct phpdav_global_struct {
-       phpdav_module php3_dav_module;
+       phpdav_module php_dav_module;
 } phpdav_global_struct;
 
 # else /* !defined(THREAD_SAFE) */
 #  define DAV_GLOBAL(a) a
 #  define DAV_TLS_VARS
 
-phpdav_module php3_dav_module;
+phpdav_module php_dav_module;
 
 # endif /* defined(THREAD_SAFE) */
 
-# define DAV_HANDLER(a) DAV_GLOBAL(php3_dav_module).a##_handler
+# define DAV_HANDLER(a) DAV_GLOBAL(php_dav_module).a##_handler
 # define DAV_SET_HANDLER(a,b) \
-       dav_set_handler(&DAV_GLOBAL(php3_dav_module).a##_handler,(b))
+       dav_set_handler(&DAV_GLOBAL(php_dav_module).a##_handler,(b))
 
 
 /* }}} */
@@ -76,11 +76,10 @@ DLEXPORT zend_module_entry *get_module() { return &phpdav_module_entry; };
 /* }}} */
 /* {{{ function prototypes */
 
-int php3_minit_phpdav(INIT_FUNC_ARGS);
-int php3_rinit_phpdav(INIT_FUNC_ARGS);
-int php3_mshutdown_phpdav(SHUTDOWN_FUNC_ARGS);
-int php3_rshutdown_phpdav(SHUTDOWN_FUNC_ARGS);
-void php3_info_phpdav(ZEND_MODULE_INFO_FUNC_ARGS);
+PHP_MINIT_FUNCTION(phpdav);
+PHP_MSHUTDOWN_FUNCTION(phpdav);
+PHP_RSHUTDOWN_FUNCTION(phpdav);
+PHP_MINFO_FUNCTION(phpdav);
 
 /* }}} */
 /* {{{ extension definition structures */
@@ -93,20 +92,18 @@ function_entry phpdav_functions[] = {
 zend_module_entry phpdav_module_entry = {
     "DAV",                   /* extension name */
     phpdav_functions,        /* extension function list */
-    php3_minit_phpdav,       /* extension-wide startup function */
-    php3_mshutdown_phpdav,   /* extension-wide shutdown function */
-    php3_rinit_phpdav,       /* per-request startup function */
-    php3_rshutdown_phpdav,   /* per-request shutdown function */
-    php3_info_phpdav,        /* information function */
+    PHP_MINIT(phpdav),       /* extension-wide startup function */
+    PHP_MSHUTDOWN(phpdav),   /* extension-wide shutdown function */
+    NULL,       /* per-request startup function */
+    PHP_RSHUTDOWN(phpdav),   /* per-request shutdown function */
+    PHP_MINFO(phpdav),        /* information function */
     STANDARD_MODULE_PROPERTIES
 };
 
 /* }}} */
 /* {{{ startup, shutdown and info functions */
 
-    /* {{{ php3_minit_phpdav */
-
-int php3_minit_phpdav(INIT_FUNC_ARGS)
+PHP_MINIT_FUNCTION(phpdav)
 {
 #if defined(THREAD_SAFE)
     phpdav_global_struct *phpdav_globals;
@@ -129,18 +126,8 @@ int php3_minit_phpdav(INIT_FUNC_ARGS)
     return SUCCESS;
 }
 
-/* }}} */
-    /* {{{ php3_rinit_phpdav */
 
-int php3_rinit_phpdav(INIT_FUNC_ARGS)
-{
-    return SUCCESS;
-}
-
-/* }}} */
-    /* {{{ php3_mshutdown_phpdav() */
-
-int php3_mshutdown_phpdav(SHUTDOWN_FUNC_ARGS)
+PHP_MSHUTDOWN_FUNCTION(phpdav)
 {
     DAV_TLS_VARS;
 #ifdef THREAD_SAFE
@@ -158,10 +145,8 @@ int php3_mshutdown_phpdav(SHUTDOWN_FUNC_ARGS)
     return SUCCESS;
 }
 
-/* }}} */
-    /* {{{ php3_rshutdown_phpdav() */
 
-int php3_rshutdown_phpdav(SHUTDOWN_FUNC_ARGS)
+PHP_RSHUTDOWN_FUNCTION(phpdav)
 {
     if (DAV_HANDLER(mkcol_test)) {
                efree(DAV_HANDLER(mkcol_test));
@@ -172,16 +157,11 @@ int php3_rshutdown_phpdav(SHUTDOWN_FUNC_ARGS)
     return SUCCESS;
 }
 
-/* }}} */
-    /* {{{ php3_info_phpdav() */
 
-void php3_info_phpdav(ZEND_MODULE_INFO_FUNC_ARGS)
+PHP_MINFO_FUNCTION(phpdav);
 {
 }
 
-/* }}} */
-
-/* }}} */
 /* {{{ extension-internal functions */
 
     /* {{{ dav_set_handler() */
index 4da3a3677a63503155d9ce24fba28f50c2b4bbd2..a961ac4cba71aa398d2cdb95f8843bd0e8256c1e 100644 (file)
@@ -982,7 +982,7 @@ static void php_mssql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS)
                tmp = result->data[result->cur_row][i];
                pval_copy_constructor(&tmp);
                if (PG(magic_quotes_runtime) && tmp.type == IS_STRING) {
-                       tmp.value.str.val = _php3_addslashes(tmp.value.str.val,tmp.value.str.len,&tmp.value.str.len,1);
+                       tmp.value.str.val = php_addslashes(tmp.value.str.val,tmp.value.str.len,&tmp.value.str.len,1);
                }
                zend_hash_index_update(return_value->value.ht, i, (void *) &tmp, sizeof(pval), (void **) &pvalue_ptr);
                zend_hash_pointer_update(return_value->value.ht, result->fields[i].name, strlen(result->fields[i].name)+1, pvalue_ptr);