12345678910111213141516171819202122232425262728293031323334 |
- #ifndef _PSPELL_H
- #define _PSPELL_H
- #if 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
|