diff options
Diffstat (limited to 'ext/com/conversion.h')
-rw-r--r-- | ext/com/conversion.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/com/conversion.h b/ext/com/conversion.h index 53d19a21de..a55d66c57b 100644 --- a/ext/com/conversion.h +++ b/ext/com/conversion.h @@ -3,11 +3,11 @@ BEGIN_EXTERN_C() -extern void php_pval_to_variant(pval *pval_arg, VARIANT *var_arg, int codepage); -extern void php_pval_to_variant_ex(pval *pval_arg, VARIANT *var_arg, pval *pval_type, int codepage); -extern int php_variant_to_pval(VARIANT *var_arg, pval *pval_arg, int persistent, int codepage); -extern OLECHAR *php_char_to_OLECHAR(char *C_str, uint strlen, int codepage); -extern char *php_OLECHAR_to_char(OLECHAR *unicode_str, uint *out_length, int persistent, int codepage); +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 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); END_EXTERN_C() |