1 #define NO_REGEX_EXTRA_H 2 3 #ifdef WIN32 4 #include <winsock2.h> 5 #include <stddef.h> 6 #endif 7 8 #ifdef NETWARE 9 #include <netinet/in.h> 10 #endif 11 12 #include "zend.h" 13 #include "zend_stack.h" 14 #include "ext/ereg/php_regex.h" 15 16 #include "httpd.h" 17 #include "http_config.h" 18 19 #if MODULE_MAGIC_NUMBER > 19980712 20 # include "ap_compat.h" 21 #else 22 # if MODULE_MAGIC_NUMBER > 19980324 23 # include "compat.h" 24 # endif 25 #endif 26 27 #include "http_core.h" 28 #include "http_main.h" 29 #include "http_protocol.h" 30 #include "http_request.h" 31 #include "http_log.h" 32 #include "util_script.h" 33 34 #include "php_variables.h" 35 #include "php_main.h" 36 #include "php_ini.h" 37 #include "ext/standard/php_standard.h" 38 39 #include "mod_php5.h" 40 41 42 zval *php_apache_request_new(request_rec *r); 43 44 int apache_php_module_hook(request_rec *r, php_handler *handler, zval **ret TSRMLS_DC); 45