summaryrefslogtreecommitdiff
path: root/ext/standard/php_var.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/standard/php_var.h')
-rw-r--r--ext/standard/php_var.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/standard/php_var.h b/ext/standard/php_var.h
index 86bd50c549..fd77d92045 100644
--- a/ext/standard/php_var.h
+++ b/ext/standard/php_var.h
@@ -25,13 +25,13 @@ PHP_FUNCTION(var_dump);
PHP_FUNCTION(serialize);
PHP_FUNCTION(unserialize);
-void php_var_dump(pval **struc, int level);
+void php_var_dump(zval **struc, int level);
/* typdef HashTable php_serialize_data_t; */
#define php_serialize_data_t HashTable
-PHPAPI void php_var_serialize(pval *buf, pval **struc, php_serialize_data_t *var_hash);
-PHPAPI int php_var_unserialize(pval **rval, const char **p, const char *max, php_serialize_data_t *var_hash);
+PHPAPI void php_var_serialize(zval *buf, zval **struc, php_serialize_data_t *var_hash);
+PHPAPI int php_var_unserialize(zval **rval, const char **p, const char *max, php_serialize_data_t *var_hash);
#define PHP_VAR_SERIALIZE_INIT(var_hash) \
zend_hash_init(&(var_hash),10,NULL,NULL,0)