diff options
author | Harald Radi <phanto@php.net> | 2001-01-28 03:24:51 +0000 |
---|---|---|
committer | Harald Radi <phanto@php.net> | 2001-01-28 03:24:51 +0000 |
commit | dac7ab13da334669403076c423ffceae37b15cee (patch) | |
tree | 8d18714af2a775cad5e28a4aee19717f45f4f4ea /ext/com/php_VARIANT.h | |
parent | 622ff39185da53fabac02b5e9be766cc82d73c18 (diff) | |
download | php-git-dac7ab13da334669403076c423ffceae37b15cee.tar.gz |
fixed unicodeconversion and parameter passing bugs in com and dotnet modules
Diffstat (limited to 'ext/com/php_VARIANT.h')
-rw-r--r-- | ext/com/php_VARIANT.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ext/com/php_VARIANT.h b/ext/com/php_VARIANT.h new file mode 100644 index 0000000000..2bb5fc1d62 --- /dev/null +++ b/ext/com/php_VARIANT.h @@ -0,0 +1,20 @@ +#ifndef PHP_TYPEDEF_VARIANT_H +#define PHP_TYPEDEF_VARIANT_H + +#if WIN32|WINNT + +extern PHP_MINIT_FUNCTION(VARIANT); +extern PHP_MSHUTDOWN_FUNCTION(VARIANT); + +extern zend_module_entry VARIANT_module_entry; +#define VARIANT_module_ptr &VARIANT_module_entry + +#else + +#define VARIANT_module_ptr NULL + +#endif /* Win32|WINNT */ + +#define phpext_VARIANT_ptr VARIANT_module_ptr + +#endif /* PHP_TYPEDEF_VARIANT_H */ |