diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-04-11 05:06:16 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-04-11 05:06:16 +0000 |
commit | 932e33e259a3990d6b343487cc72e21c6375b7f6 (patch) | |
tree | 23d1de2ffe16d9b96d1f2835ca8cf6f8aab86432 /ext/skeleton | |
parent | 973fe12d6d48b6b4c67517ee428a3dc74844eb80 (diff) | |
download | php-git-932e33e259a3990d6b343487cc72e21c6375b7f6.tar.gz |
TSRMG => TSRMLS
Diffstat (limited to 'ext/skeleton')
-rw-r--r-- | ext/skeleton/php_skeleton.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/skeleton/php_skeleton.h b/ext/skeleton/php_skeleton.h index 6faaa436a9..77cb8f3bd5 100644 --- a/ext/skeleton/php_skeleton.h +++ b/ext/skeleton/php_skeleton.h @@ -37,9 +37,9 @@ ZEND_END_MODULE_GLOBALS(extname) /* In every utility function you add that needs to use variables in php_extname_globals, call TSRM_FETCH(); after declaring other - variables used by that function, or better yet, pass in TSRMG_CC + variables used by that function, or better yet, pass in TSRMLS_CC after the last function argument and declare your utility function - with TSRMG_DC after the last declared argument. Always refer to + with TSRMLS_DC after the last declared argument. Always refer to the globals in your function as EXTNAME_G(variable). You are encouraged to rename these macros something shorter, see examples in any other php module directory. |