mirror of
https://github.com/php-win-ext/phpy.git
synced 2026-03-24 00:42:11 +01:00
16 lines
300 B
C
16 lines
300 B
C
/* phpy extension for PHP */
|
|
|
|
#ifndef PHP_PHPY_H
|
|
# define PHP_PHPY_H
|
|
|
|
extern zend_module_entry phpy_module_entry;
|
|
# define phpext_phpy_ptr &phpy_module_entry
|
|
|
|
# define PHP_PHPY_VERSION "1.0.6"
|
|
|
|
# if defined(ZTS) && defined(COMPILE_DL_PHPY)
|
|
ZEND_TSRMLS_CACHE_EXTERN()
|
|
# endif
|
|
|
|
#endif /* PHP_PHPY_H */
|