summaryrefslogtreecommitdiff
path: root/ext/com_dotnet/php_com_dotnet_internal.h
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-05-09 15:21:29 +0000
committerWez Furlong <wez@php.net>2004-05-09 15:21:29 +0000
commitf8518cc83a85d818295bee41fbefa3cff735a886 (patch)
tree554484d52700a595b4690dce3ab22c9dee6c274c /ext/com_dotnet/php_com_dotnet_internal.h
parent6f8233897eee10da21f7eb6122fed06a425a55bd (diff)
downloadphp-git-f8518cc83a85d818295bee41fbefa3cff735a886.tar.gz
Implement com_get_active_object() and a helper object for working with
persistent COM objects. (That's the last of the stuff I want to sneak in before 5.0 is released).
Diffstat (limited to 'ext/com_dotnet/php_com_dotnet_internal.h')
-rw-r--r--ext/com_dotnet/php_com_dotnet_internal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ext/com_dotnet/php_com_dotnet_internal.h b/ext/com_dotnet/php_com_dotnet_internal.h
index d60da9b075..31ce713f17 100644
--- a/ext/com_dotnet/php_com_dotnet_internal.h
+++ b/ext/com_dotnet/php_com_dotnet_internal.h
@@ -99,6 +99,7 @@ PHP_FUNCTION(com_create_guid);
PHP_FUNCTION(com_print_typeinfo);
PHP_FUNCTION(com_message_pump);
PHP_FUNCTION(com_load_typelib);
+PHP_FUNCTION(com_get_active_object);
HRESULT php_com_invoke_helper(php_com_dotnet_object *obj, DISPID id_member,
WORD flags, DISPPARAMS *disp_params, VARIANT *v TSRMLS_DC);
@@ -116,6 +117,9 @@ int php_com_wrapper_minit(INIT_FUNC_ARGS);
PHPAPI IDispatch *php_com_wrapper_export_as_sink(zval *val, GUID *sinkid, HashTable *id_to_name TSRMLS_DC);
PHPAPI IDispatch *php_com_wrapper_export(zval *val TSRMLS_DC);
+/* com_persist.c */
+int php_com_persist_minit(INIT_FUNC_ARGS);
+
/* com_variant.c */
PHP_FUNCTION(com_variant_create_instance);
PHP_FUNCTION(variant_set);