summaryrefslogtreecommitdiff
path: root/ext/tokenizer
diff options
context:
space:
mode:
authorAndrei Zmievski <andrei@php.net>2002-11-08 21:20:48 +0000
committerAndrei Zmievski <andrei@php.net>2002-11-08 21:20:48 +0000
commit1a8d4258ecd3768ffb9d2036c704b27e24f4025b (patch)
tree9e950991240eb9cd76acade21f0e2191f4f41e2b /ext/tokenizer
parent8e1f89bc6f68937515675fecde07de1e2f58e1f5 (diff)
downloadphp-git-1a8d4258ecd3768ffb9d2036c704b27e24f4025b.tar.gz
Remove unnecessary comments.
Diffstat (limited to 'ext/tokenizer')
-rw-r--r--ext/tokenizer/php_tokenizer.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/ext/tokenizer/php_tokenizer.h b/ext/tokenizer/php_tokenizer.h
index 8c55480397..2fa156061e 100644
--- a/ext/tokenizer/php_tokenizer.h
+++ b/ext/tokenizer/php_tokenizer.h
@@ -42,26 +42,6 @@ PHP_FUNCTION(confirm_tokenizer_compiled); /* For testing, remove later. */
PHP_FUNCTION(token_get_all);
PHP_FUNCTION(token_name);
-/*
- Declare any global variables you may need between the BEGIN
- and END macros here:
-
-ZEND_BEGIN_MODULE_GLOBALS(tokenizer)
- int global_value;
- char *global_string;
-ZEND_END_MODULE_GLOBALS(tokenizer)
-*/
-
-/* In every utility function you add that needs to use variables
- in php_tokenizer_globals, call TSRM_FETCH(); after declaring other
- variables used by that function, or better yet, pass in TSRMG_CC
- after the last function argument and declare your utility function
- with TSRMG_DC after the last declared argument. Always refer to
- the globals in your function as TOKENIZER_G(variable). You are
- encouraged to rename these macros something shorter, see
- examples in any other php module directory.
-*/
-
#ifdef ZTS
#define TOKENIZER_G(v) TSRMG(tokenizer_globals_id, zend_tokenizer_globals *, v)
#else