mirror of
https://github.com/php/php-src.git
synced 2024-12-12 19:33:31 +08:00
b57dc27595
- add necessary phpext_*_ptr
25 lines
470 B
C
25 lines
470 B
C
#ifndef _PHP3_COM_H
|
|
#define _PHP3_COM_H
|
|
|
|
#if WIN32|WINNT
|
|
|
|
extern int php3_minit_COM(INIT_FUNC_ARGS);
|
|
extern int php3_mshutdown_COM(SHUTDOWN_FUNC_ARGS);
|
|
PHP_FUNCTION(COM_load);
|
|
PHP_FUNCTION(COM_invoke);
|
|
|
|
PHP_FUNCTION(com_propget);
|
|
PHP_FUNCTION(com_propput);
|
|
extern php3_module_entry COM_module_entry;
|
|
#define COM_module_ptr &COM_module_entry
|
|
|
|
#else
|
|
|
|
#define COM_module_ptr NULL
|
|
|
|
#endif /* Win32|WINNT */
|
|
|
|
#define phpext_COM_ptr COM_module_ptr
|
|
|
|
#endif /* _PHP3_COM_H */
|