File tree 2 files changed +11
-5
lines changed
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 19
19
20
20
/* resource lists */
21
21
22
- #include "zend.h"
23
22
#include "zend_list.h"
24
- #include "zend_API.h"
25
- #include "zend_globals.h"
23
+ #include "zend_execute.h" // for get_active_class_name()
24
+ #include "zend_globals.h" // for struct _zend_executor_globals
25
+ #include "zend_globals_macros.h" // for EG()
26
+ #include "zend_hash.h"
27
+ #include "zend_types.h" // for zval
26
28
27
29
ZEND_API int le_index_ptr ;
28
30
Original file line number Diff line number Diff line change 20
20
#ifndef ZEND_LIST_H
21
21
#define ZEND_LIST_H
22
22
23
- #include "zend_hash.h"
24
- #include "zend_globals.h"
23
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
24
+
25
+ typedef struct _zend_array HashTable ;
26
+ typedef struct _zend_resource zend_resource ;
27
+ typedef struct _zend_string zend_string ;
28
+ typedef struct _zval_struct zval ;
25
29
26
30
BEGIN_EXTERN_C ()
27
31
You can’t perform that action at this time.
0 commit comments