diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-14 12:47:09 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-14 12:47:09 +0000 |
commit | eb52f754076d1f193588afa8f25a1ccc3a5c4adb (patch) | |
tree | 9171e41f42ed5c542344f44e94d0b70dcc2c950b /ext/com/conversion.h | |
parent | 0fbbadbd2f89f9f6ee952bd377b00f86f57157db (diff) | |
download | php-git-eb52f754076d1f193588afa8f25a1ccc3a5c4adb.tar.gz |
- Avoid using malloc()
- Improve and fix leaks in the typelib constants registration mechanism
Diffstat (limited to 'ext/com/conversion.h')
-rw-r--r-- | ext/com/conversion.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/com/conversion.h b/ext/com/conversion.h index a55d66c57b..20c078be79 100644 --- a/ext/com/conversion.h +++ b/ext/com/conversion.h @@ -5,9 +5,9 @@ BEGIN_EXTERN_C() PHPAPI void php_pval_to_variant(pval *pval_arg, VARIANT *var_arg, int codepage TSRMLS_DC); PHPAPI void php_pval_to_variant_ex(pval *pval_arg, VARIANT *var_arg, pval *pval_type, int codepage TSRMLS_DC); -PHPAPI int php_variant_to_pval(VARIANT *var_arg, pval *pval_arg, int persistent, int codepage TSRMLS_DC); +PHPAPI int php_variant_to_pval(VARIANT *var_arg, pval *pval_arg, int codepage TSRMLS_DC); PHPAPI OLECHAR *php_char_to_OLECHAR(char *C_str, uint strlen, int codepage TSRMLS_DC); -PHPAPI char *php_OLECHAR_to_char(OLECHAR *unicode_str, uint *out_length, int persistent, int codepage TSRMLS_DC); +PHPAPI char *php_OLECHAR_to_char(OLECHAR *unicode_str, uint *out_length, int codepage TSRMLS_DC); END_EXTERN_C() |