diff options
| author | Zeev Suraski <zeev@php.net> | 2001-02-05 21:59:17 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-02-05 21:59:17 +0000 |
| commit | bf84618244ec08a96b79594a35c496e431cbe909 (patch) | |
| tree | 8558708d479e78d372c913824d392e61946408e1 /ext/rpc/com/variant.c | |
| parent | cf11a4fbc885d922897b498d4bed6d64b0bf1362 (diff) | |
| download | php-git-bf84618244ec08a96b79594a35c496e431cbe909.tar.gz | |
Fix Windows build
Diffstat (limited to 'ext/rpc/com/variant.c')
| -rw-r--r-- | ext/rpc/com/variant.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/rpc/com/variant.c b/ext/rpc/com/variant.c index 352c0674dd..c923b507de 100644 --- a/ext/rpc/com/variant.c +++ b/ext/rpc/com/variant.c @@ -30,6 +30,7 @@ #include "php_ini.h" #include "php_typedef_VARIANT.h" #include "conversion.h" +#include "ext/standard/info.h" #include <unknwn.h> @@ -48,6 +49,7 @@ function_entry VARIANT_functions[] = { {NULL, NULL, NULL} }; + static PHP_MINFO_FUNCTION(VARIANT) { php_info_print_table_start(); @@ -55,10 +57,12 @@ static PHP_MINFO_FUNCTION(VARIANT) php_info_print_table_end(); } + zend_module_entry VARIANT_module_entry = { "variant", VARIANT_functions, PHP_MINIT(VARIANT), PHP_MSHUTDOWN(VARIANT), NULL, NULL, PHP_MINFO(VARIANT), STANDARD_MODULE_PROPERTIES }; + PHP_MINIT_FUNCTION(VARIANT) { le_variant = zend_register_list_destructors_ex(php_variant_destructor, NULL, "VARIANT", module_number); |
