mirror of
https://github.com/php/php-src.git
synced 2024-11-30 05:13:56 +08:00
53 lines
1.6 KiB
C
53 lines
1.6 KiB
C
#ifndef PHP_COM_H
|
|
#define PHP_COM_H
|
|
|
|
#if PHP_WIN32
|
|
|
|
#include "com.h"
|
|
|
|
BEGIN_EXTERN_C()
|
|
|
|
PHP_MINIT_FUNCTION(COM);
|
|
PHP_MSHUTDOWN_FUNCTION(COM);
|
|
|
|
PHP_FUNCTION(com_load);
|
|
PHP_FUNCTION(com_invoke);
|
|
PHP_FUNCTION(com_addref);
|
|
PHP_FUNCTION(com_release);
|
|
PHP_FUNCTION(com_propget);
|
|
PHP_FUNCTION(com_propput);
|
|
PHP_FUNCTION(com_load_typelib);
|
|
PHP_FUNCTION(com_isenum);
|
|
|
|
PHPAPI HRESULT php_COM_invoke(comval *obj, DISPID dispIdMember, WORD wFlags, DISPPARAMS FAR* pDispParams, VARIANT FAR* pVarResult, char **ErrString TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_get_ids_of_names(comval *obj, OLECHAR FAR* FAR* rgszNames, DISPID FAR* rgDispId TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_release(comval *obj TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_addref(comval *obj TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_destruct(comval *obj TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_set(comval *obj, IDispatch FAR* FAR* pDisp, int cleanup TSRMLS_DC);
|
|
PHPAPI HRESULT php_COM_clone(comval *obj, comval *clone, int cleanup TSRMLS_DC);
|
|
PHPAPI char *php_COM_error_message(HRESULT hr TSRMLS_DC);
|
|
PHPAPI int php_COM_get_le_comval();
|
|
PHPAPI int php_COM_set_property_handler(zend_property_reference *property_reference, pval *value);
|
|
PHPAPI pval php_COM_get_property_handler(zend_property_reference *property_reference);
|
|
PHPAPI void php_COM_call_function_handler(INTERNAL_FUNCTION_PARAMETERS, zend_property_reference *property_reference);
|
|
|
|
zend_module_entry COM_module_entry;
|
|
zend_class_entry COM_class_entry;
|
|
|
|
#ifdef DEBUG
|
|
extern int resourcecounter;
|
|
#endif
|
|
|
|
END_EXTERN_C()
|
|
|
|
#define phpext_com_ptr &COM_module_entry
|
|
|
|
#else
|
|
|
|
#define phpext_com_ptr NULL
|
|
|
|
#endif /* PHP_WIN32 */
|
|
|
|
#endif /* PHP_COM_H */
|