2000-07-11 05:29:19 +08:00
|
|
|
/*
|
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| PHP Version 5 |
|
2000-07-11 05:29:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2004-01-09 01:33:29 +08:00
|
|
|
| Copyright (c) 1997-2004 The PHP Group |
|
2000-07-11 05:29:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2003-06-11 04:04:29 +08:00
|
|
|
| This source file is subject to version 3.0 of the PHP license, |
|
2000-07-24 09:40:02 +08:00
|
|
|
| that is bundled with this package in the file LICENSE, and is |
|
2003-06-11 04:04:29 +08:00
|
|
|
| available through the world-wide-web at the following url: |
|
|
|
|
| http://www.php.net/license/3_0.txt. |
|
2000-07-24 09:40:02 +08:00
|
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
|
|
| license@php.net so we can mail you a copy immediately. |
|
2000-07-11 05:29:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2002-02-28 16:29:35 +08:00
|
|
|
| Author: Vlad Krupin <phpdevel@echospace.com> |
|
2000-07-11 05:29:19 +08:00
|
|
|
+----------------------------------------------------------------------+
|
2000-07-24 09:40:02 +08:00
|
|
|
*/
|
2000-07-11 05:29:19 +08:00
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
#ifndef _PSPELL_H
|
|
|
|
#define _PSPELL_H
|
|
|
|
#if HAVE_PSPELL
|
|
|
|
extern zend_module_entry pspell_module_entry;
|
|
|
|
#define pspell_module_ptr &pspell_module_entry
|
|
|
|
|
2000-07-14 04:39:14 +08:00
|
|
|
PHP_MINIT_FUNCTION(pspell);
|
|
|
|
PHP_MINFO_FUNCTION(pspell);
|
2000-07-11 05:29:19 +08:00
|
|
|
PHP_FUNCTION(pspell_new);
|
2000-08-09 02:46:41 +08:00
|
|
|
PHP_FUNCTION(pspell_new_personal);
|
2000-08-11 04:57:40 +08:00
|
|
|
PHP_FUNCTION(pspell_new_config);
|
2000-07-11 05:29:19 +08:00
|
|
|
PHP_FUNCTION(pspell_check);
|
|
|
|
PHP_FUNCTION(pspell_suggest);
|
2000-07-26 06:09:52 +08:00
|
|
|
PHP_FUNCTION(pspell_store_replacement);
|
|
|
|
PHP_FUNCTION(pspell_add_to_personal);
|
|
|
|
PHP_FUNCTION(pspell_add_to_session);
|
|
|
|
PHP_FUNCTION(pspell_clear_session);
|
2000-08-09 02:46:41 +08:00
|
|
|
PHP_FUNCTION(pspell_save_wordlist);
|
2000-08-11 04:57:40 +08:00
|
|
|
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);
|
2004-02-12 02:50:16 +08:00
|
|
|
PHP_FUNCTION(pspell_config_dict_dir);
|
|
|
|
PHP_FUNCTION(pspell_config_data_dir);
|
2000-08-11 04:57:40 +08:00
|
|
|
PHP_FUNCTION(pspell_config_repl);
|
|
|
|
PHP_FUNCTION(pspell_config_save_repl);
|
2000-07-11 05:29:19 +08:00
|
|
|
#else
|
|
|
|
#define pspell_module_ptr NULL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define phpext_pspell_ptr pspell_module_ptr
|
|
|
|
|
|
|
|
#endif /* _PSPELL_H */
|