andrei          Fri Nov  8 16:20:49 2002 EDT

  Modified files:              
    /php4/ext/tokenizer php_tokenizer.h 
  Log:
  Remove unnecessary comments.
  
  
Index: php4/ext/tokenizer/php_tokenizer.h
diff -u php4/ext/tokenizer/php_tokenizer.h:1.3 php4/ext/tokenizer/php_tokenizer.h:1.4
--- php4/ext/tokenizer/php_tokenizer.h:1.3      Thu Feb 28 03:26:53 2002
+++ php4/ext/tokenizer/php_tokenizer.h  Fri Nov  8 16:20:48 2002
@@ -42,26 +42,6 @@
 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



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to