diff options
author | Anatol Belski <ab@php.net> | 2014-09-15 11:13:55 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-09-15 11:30:25 +0200 |
commit | 4c496a7f5b65228b2afbe3399cf9d692168796f8 (patch) | |
tree | 26881e6c1dfde1dad560210e31bcddca12024040 | |
parent | e056d52acff01a80f6ab9dbff1256320c8c47062 (diff) | |
download | php-git-4c496a7f5b65228b2afbe3399cf9d692168796f8.tar.gz |
fix signature
-rw-r--r-- | ext/com_dotnet/php_com_dotnet_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com_dotnet/php_com_dotnet_internal.h b/ext/com_dotnet/php_com_dotnet_internal.h index f153883006..43c208f9cb 100644 --- a/ext/com_dotnet/php_com_dotnet_internal.h +++ b/ext/com_dotnet/php_com_dotnet_internal.h @@ -104,7 +104,7 @@ 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, int silent, int allow_noarg TSRMLS_DC); HRESULT php_com_get_id_of_name(php_com_dotnet_object *obj, char *name, - int namelen, DISPID *dispid TSRMLS_DC); + size_t namelen, DISPID *dispid TSRMLS_DC); int php_com_do_invoke_by_id(php_com_dotnet_object *obj, DISPID dispid, WORD flags, VARIANT *v, int nargs, zval *args, int silent, int allow_noarg TSRMLS_DC); int php_com_do_invoke(php_com_dotnet_object *obj, char *name, int namelen, |