1234567891011121314151617181920212223242526272829303132 |
- #ifndef _PSPELL_H
- #define _PSPELL_H
- #if HAVE_PSPELL
- extern zend_module_entry pspell_module_entry;
- #define pspell_module_ptr &pspell_module_entry
- #else
- #define pspell_module_ptr NULL
- #endif
- #define phpext_pspell_ptr pspell_module_ptr
- #endif
|