25 lines
602 B
C
25 lines
602 B
C
/*
|
|||
|
|
* cac_path_parity — $_SERVER filesystem-path parity for the shared-ols tier.
|
||
|
|
*
|
||
|
|
* See cac_path_parity.c for the full rationale.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef PHP_CAC_PATH_PARITY_H
|
||
|
|
#define PHP_CAC_PATH_PARITY_H
|
||
|
|
|
||
|
|
extern zend_module_entry cac_path_parity_module_entry;
|
||
|
|
#define phpext_cac_path_parity_ptr &cac_path_parity_module_entry
|
||
|
|
|
||
|
|
#define PHP_CAC_PATH_PARITY_VERSION "1.0.0"
|
||
|
|
|
||
|
|
#if defined(ZTS) && defined(COMPILE_DL_CAC_PATH_PARITY)
|
||
|
|
ZEND_TSRMLS_CACHE_EXTERN()
|
||
|
|
#endif
|
||
|
|
|
||
|
|
ZEND_BEGIN_MODULE_GLOBALS(cac_path_parity)
|
||
|
|
char *from;
|
||
|
|
char *to;
|
||
|
|
ZEND_END_MODULE_GLOBALS(cac_path_parity)
|
||
|
|
|
||
|
|
#endif /* PHP_CAC_PATH_PARITY_H */
|