mirror of
https://github.com/php/php-src.git
synced 2024-11-29 04:46:07 +08:00
14 lines
543 B
C
14 lines
543 B
C
#ifndef CONVERSION_H
|
|
#define CONVERSION_H
|
|
|
|
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);
|
|
|
|
END_EXTERN_C()
|
|
|
|
#endif |