From b3305dab642684fee25ae04860e2650e13ecb1c1 Mon Sep 17 00:00:00 2001 From: Vlad Krupin Date: Tue, 25 Jul 2000 22:09:52 +0000 Subject: [PATCH] added several functions for manipulating wordlists: pspell_store_replacement() pspell_add_to_personal() pspell_add_to_session() pspell_clear_session() --- ext/pspell/php_pspell.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/pspell/php_pspell.h b/ext/pspell/php_pspell.h index 7f2ef9232bd..b411eda0bc6 100644 --- a/ext/pspell/php_pspell.h +++ b/ext/pspell/php_pspell.h @@ -31,6 +31,10 @@ PHP_FUNCTION(pspell_mode); PHP_FUNCTION(pspell_runtogether); 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); #else #define pspell_module_ptr NULL #endif