mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00
20 lines
402 B
C
20 lines
402 B
C
#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 */
|