1234567891011121314151617181920212223242526272829303132 |
- #ifndef _PSPELL_H
- #define _PSPELL_H
- #ifdef HAVE_PSPELL
- extern zend_module_entry pspell_module_entry;
- #define pspell_module_ptr &pspell_module_entry
- #include "php_version.h"
- #define PHP_PSPELL_VERSION PHP_VERSION
- #else
- #define pspell_module_ptr NULL
- #endif
- #define phpext_pspell_ptr pspell_module_ptr
- #endif
|