mirror of
https://github.com/php/php-src.git
synced 2025-08-20 17:34:35 +02:00
fixed unicodeconversion and parameter passing bugs in com and dotnet modules
This commit is contained in:
parent
622ff39185
commit
dac7ab13da
10 changed files with 3646 additions and 0 deletions
20
ext/rpc/com/php_variant.h
Normal file
20
ext/rpc/com/php_variant.h
Normal file
|
@ -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 */
|
Loading…
Add table
Add a link
Reference in a new issue