diff options
author | Sergey Kartashoff <gluke@php.net> | 2001-12-01 20:09:15 +0000 |
---|---|---|
committer | Sergey Kartashoff <gluke@php.net> | 2001-12-01 20:09:15 +0000 |
commit | 668782810019fd6f5cf02465cb986221d86c38d5 (patch) | |
tree | f80067909293487b1dd0476043793b16a5466343 /ext/mnogosearch/php_mnogo.h | |
parent | 222fe232751b607aab466bcbd2826c2b6f9f366f (diff) | |
download | php-git-668782810019fd6f5cf02465cb986221d86c38d5.tar.gz |
- Added stored API to mnoGoSearch module. Now you can check
if URL is places at the stored database ot not. Example updated.
Diffstat (limited to 'ext/mnogosearch/php_mnogo.h')
-rw-r--r-- | ext/mnogosearch/php_mnogo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/mnogosearch/php_mnogo.h b/ext/mnogosearch/php_mnogo.h index c5da3be499..b63bb14cdb 100644 --- a/ext/mnogosearch/php_mnogo.h +++ b/ext/mnogosearch/php_mnogo.h @@ -32,6 +32,7 @@ #if UDM_VERSION_ID >= 30203 #include <udm_crc32.h> +#include <udm_store.h> #endif extern zend_module_entry mnogosearch_module_entry; @@ -60,6 +61,9 @@ DLEXPORT PHP_FUNCTION(udm_check_charset); #if UDM_VERSION_ID >= 30203 DLEXPORT PHP_FUNCTION(udm_crc32); +DLEXPORT PHP_FUNCTION(udm_open_stored); +DLEXPORT PHP_FUNCTION(udm_check_stored); +DLEXPORT PHP_FUNCTION(udm_close_stored); #endif DLEXPORT PHP_FUNCTION(udm_alloc_agent); |