diff options
author | Sergey Kartashoff <gluke@php.net> | 2001-12-01 14:05:13 +0000 |
---|---|---|
committer | Sergey Kartashoff <gluke@php.net> | 2001-12-01 14:05:13 +0000 |
commit | f70e998794f5d3f9a0681b219f3748c49b867ed1 (patch) | |
tree | 8073d218a991cd4816648daed943d829f92e821a /ext/mnogosearch/php_mnogo.h | |
parent | 94cfe03da5dca388ff51cf90d99e40804923860e (diff) | |
download | php-git-f70e998794f5d3f9a0681b219f3748c49b867ed1.tar.gz |
- StoreDOC support has been added to mnogoSearch module.
Diffstat (limited to 'ext/mnogosearch/php_mnogo.h')
-rw-r--r-- | ext/mnogosearch/php_mnogo.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/mnogosearch/php_mnogo.h b/ext/mnogosearch/php_mnogo.h index b5e4480321..c5da3be499 100644 --- a/ext/mnogosearch/php_mnogo.h +++ b/ext/mnogosearch/php_mnogo.h @@ -30,6 +30,10 @@ #include <udm_config.h> #include <udmsearch.h> +#if UDM_VERSION_ID >= 30203 +#include <udm_crc32.h> +#endif + extern zend_module_entry mnogosearch_module_entry; #define mnogosearch_module_ptr &mnogosearch_module_entry @@ -54,6 +58,10 @@ DLEXPORT PHP_FUNCTION(udm_api_version); DLEXPORT PHP_FUNCTION(udm_check_charset); #endif +#if UDM_VERSION_ID >= 30203 +DLEXPORT PHP_FUNCTION(udm_crc32); +#endif + DLEXPORT PHP_FUNCTION(udm_alloc_agent); DLEXPORT PHP_FUNCTION(udm_set_agent_param); |