diff options
author | Nuno Lopes <nlopess@php.net> | 2006-09-15 14:33:34 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-09-15 14:33:34 +0000 |
commit | 96b9fb07875308e9085c68e0983f58fea41a2e3e (patch) | |
tree | 35b825ba6a50417591d1b2bf5829d68673a2cd0b /ext/tidy/php_tidy.h | |
parent | 5111cd3af9d314fcea4e3d961e4e1e0783509fae (diff) | |
download | php-git-96b9fb07875308e9085c68e0983f58fea41a2e3e.tar.gz |
remove more old code and macros. also remove the module global 'inst' (not needed anymore)
Diffstat (limited to 'ext/tidy/php_tidy.h')
-rw-r--r-- | ext/tidy/php_tidy.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/tidy/php_tidy.h b/ext/tidy/php_tidy.h index dd1aa7b31a..c5e2898164 100644 --- a/ext/tidy/php_tidy.h +++ b/ext/tidy/php_tidy.h @@ -24,12 +24,6 @@ extern zend_module_entry tidy_module_entry; #define phpext_tidy_ptr &tidy_module_entry -#ifdef PHP_WIN32 -#define PHP_TIDY_API __declspec(dllexport) -#else -#define PHP_TIDY_API -#endif - #define TIDY_METHOD_MAP(name, func_name, arg_types) \ ZEND_NAMED_FE(name, ZEND_FN(func_name), arg_types) #define TIDY_NODE_METHOD(name) PHP_FUNCTION(tnm_ ##name) @@ -41,7 +35,6 @@ extern zend_module_entry tidy_module_entry; ZEND_BEGIN_MODULE_GLOBALS(tidy) char *default_config; - zval *inst; ZEND_END_MODULE_GLOBALS(tidy) #ifdef ZTS @@ -52,7 +45,6 @@ ZEND_END_MODULE_GLOBALS(tidy) #endif - /* * Local variables: * tab-width: 4 |