Changeset 268 for trunk/xcache.h
- Timestamp:
- 10/29/2006 02:05:01 AM (2 years ago)
- Files:
-
- 1 modified
-
trunk/xcache.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.h
r263 r268 128 128 add_assoc_zval_ex(arg, key, key_len, value) 129 129 130 # define zend_u_is_auto_global(type, name, name_len) \ 131 zend_is_auto_global(name, name_len) 130 132 #endif 131 133 /* }}} */ … … 221 223 } xc_funcinfo_t; 222 224 /* }}} */ 225 #ifdef ZEND_ENGINE_2_1 226 /* {{{ xc_autoglobal_t */ 227 typedef struct { 228 #ifdef IS_UNICODE 229 zend_uchar type; 230 #endif 231 zstr key; 232 zend_uint key_len; 233 } xc_autoglobal_t; 234 /* }}} */ 235 #endif 223 236 typedef enum { XC_TYPE_PHP, XC_TYPE_VAR } xc_entry_type_t; 224 237 /* {{{ xc_entry_data_php_t */ … … 244 257 xc_classinfo_t *classinfos; 245 258 zend_bool have_early_binding; 259 260 #ifdef ZEND_ENGINE_2_1 261 zend_uint autoglobal_cnt; 262 xc_autoglobal_t *autoglobals; 263 #endif 246 264 } xc_entry_data_php_t; 247 265 /* }}} */

