diff options
author | Anatol Belski <ab@php.net> | 2018-08-02 21:20:04 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2018-08-02 21:20:04 +0200 |
commit | 91a0a10f715d1c32adab83b55bd970cfbaba9721 (patch) | |
tree | 4af89e577cf2aa04a9ecdbfc9c80361f8ebe06f3 /ext/com_dotnet/php_com_dotnet_internal.h | |
parent | 0ba49597b9d08d2e1bd416812037051f760f57be (diff) | |
parent | 19592519c2803a42762e8fee18505083dc3474fc (diff) | |
download | php-git-91a0a10f715d1c32adab83b55bd970cfbaba9721.tar.gz |
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1:
Fix callbacks
bump version
Diffstat (limited to 'ext/com_dotnet/php_com_dotnet_internal.h')
-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 4745de9f26..506a14b542 100644 --- a/ext/com_dotnet/php_com_dotnet_internal.h +++ b/ext/com_dotnet/php_com_dotnet_internal.h @@ -174,7 +174,7 @@ PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib_via_cache(char *search_string, PHP_COM_DOTNET_API ITypeLib *php_com_load_typelib(char *search_string, int codepage); PHP_COM_DOTNET_API int php_com_import_typelib(ITypeLib *TL, int mode, int codepage); -void php_com_typelibrary_dtor(void *pDest); +void php_com_typelibrary_dtor(zval *pDest); ITypeInfo *php_com_locate_typeinfo(char *typelibname, php_com_dotnet_object *obj, char *dispname, int sink); int php_com_process_typeinfo(ITypeInfo *typeinfo, HashTable *id_to_name, int printdef, GUID *guid, int codepage); |