diff options
author | Vlad Krupin <vlad@php.net> | 2000-08-10 20:57:40 +0000 |
---|---|---|
committer | Vlad Krupin <vlad@php.net> | 2000-08-10 20:57:40 +0000 |
commit | 23df217463bfd80be45b42d6bed8ceac5e9d16e2 (patch) | |
tree | 137c8f7e5c0dbecfabb400f38d5f40dac6438dd2 /ext/pspell/php_pspell.h | |
parent | a1adc81f306056c50ec700b6539a069791b9f831 (diff) | |
download | php-git-23df217463bfd80be45b42d6bed8ceac5e9d16e2.tar.gz |
Added capability to create and manipulate a config object that can be
used later to create an instance of the spellchecker based on that
config.
Diffstat (limited to 'ext/pspell/php_pspell.h')
-rw-r--r-- | ext/pspell/php_pspell.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/pspell/php_pspell.h b/ext/pspell/php_pspell.h index f3a7bfdd32..f5cfef6357 100644 --- a/ext/pspell/php_pspell.h +++ b/ext/pspell/php_pspell.h @@ -28,6 +28,7 @@ PHP_MINIT_FUNCTION(pspell); PHP_MINFO_FUNCTION(pspell); PHP_FUNCTION(pspell_new); PHP_FUNCTION(pspell_new_personal); +PHP_FUNCTION(pspell_new_config); PHP_FUNCTION(pspell_check); PHP_FUNCTION(pspell_suggest); PHP_FUNCTION(pspell_store_replacement); @@ -35,6 +36,13 @@ PHP_FUNCTION(pspell_add_to_personal); PHP_FUNCTION(pspell_add_to_session); PHP_FUNCTION(pspell_clear_session); PHP_FUNCTION(pspell_save_wordlist); +PHP_FUNCTION(pspell_config_create); +PHP_FUNCTION(pspell_config_runtogether); +PHP_FUNCTION(pspell_config_mode); +PHP_FUNCTION(pspell_config_ignore); +PHP_FUNCTION(pspell_config_personal); +PHP_FUNCTION(pspell_config_repl); +PHP_FUNCTION(pspell_config_save_repl); #else #define pspell_module_ptr NULL #endif |