diff options
author | Vlad Krupin <vlad@php.net> | 2000-08-08 18:46:41 +0000 |
---|---|---|
committer | Vlad Krupin <vlad@php.net> | 2000-08-08 18:46:41 +0000 |
commit | a2cdb7726f9a247a36c2e4da5359469e1f3fbcbb (patch) | |
tree | 478eec2d89de1de0c3374baff0fef0c556e4f4d6 /ext/pspell/php_pspell.h | |
parent | 40fd4fb21b28d6a302798a1b173ffd082a51816a (diff) | |
download | php-git-a2cdb7726f9a247a36c2e4da5359469e1f3fbcbb.tar.gz |
added support for personalized dictionaries.
new functions: pspell_new_personal(), pspell_save_wordlist().
pspell_save_wordlist() needs to be changed to return error-codes
once pspell library gets fixed
Diffstat (limited to 'ext/pspell/php_pspell.h')
-rw-r--r-- | ext/pspell/php_pspell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/pspell/php_pspell.h b/ext/pspell/php_pspell.h index 21f931b827..f3a7bfdd32 100644 --- a/ext/pspell/php_pspell.h +++ b/ext/pspell/php_pspell.h @@ -27,12 +27,14 @@ extern zend_module_entry pspell_module_entry; PHP_MINIT_FUNCTION(pspell); PHP_MINFO_FUNCTION(pspell); PHP_FUNCTION(pspell_new); +PHP_FUNCTION(pspell_new_personal); PHP_FUNCTION(pspell_check); PHP_FUNCTION(pspell_suggest); PHP_FUNCTION(pspell_store_replacement); PHP_FUNCTION(pspell_add_to_personal); PHP_FUNCTION(pspell_add_to_session); PHP_FUNCTION(pspell_clear_session); +PHP_FUNCTION(pspell_save_wordlist); #else #define pspell_module_ptr NULL #endif |