File tree Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Expand file tree Collapse file tree 2 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 19
19
+----------------------------------------------------------------------+
20
20
*/
21
21
22
- #include "zend.h"
23
- #include "zend_execute.h"
24
22
#include "zend_API.h"
25
- #include "zend_modules.h"
23
+ #include "zend_arena.h"
24
+ #include "zend_objects.h" // for zend_objects_new()
26
25
#include "zend_extensions.h"
27
26
#include "zend_constants.h"
28
- #include "zend_interfaces.h"
27
+ #include "zend_interfaces.h" // for zend_ce_stringable
29
28
#include "zend_exceptions.h"
30
- #include "zend_closures.h"
31
29
#include "zend_inheritance.h"
32
30
#include "zend_ini.h"
33
31
#include "zend_enum.h"
Original file line number Diff line number Diff line change 22
22
#ifndef ZEND_API_H
23
23
#define ZEND_API_H
24
24
25
- #include "zend_modules.h"
26
- #include "zend_list.h"
27
- #include "zend_operators.h"
28
- #include "zend_variables.h"
29
- #include "zend_execute.h"
30
- #include "zend_type_info.h"
25
+ #include "zend_compile.h" // for zif_handler
26
+ #include "zend_execute.h" // for get_active_function_or_method_name()
27
+ #include "zend_globals.h" // for struct _zend_compiler_globals used by ZEND_MAP_PTR_GET_IMM()
28
+ #include "zend_globals_macros.h" // for CG() used by ZEND_MAP_PTR_GET_IMM()
29
+ #include "zend_portability.h" // for BEGIN_EXTERN_C
31
30
31
+ typedef struct _zend_module_entry zend_module_entry ;
32
32
33
33
BEGIN_EXTERN_C ()
34
34
You can’t perform that action at this time.
0 commit comments