summaryrefslogtreecommitdiff
path: root/ext/standard/php_var.h
diff options
context:
space:
mode:
authorDaniel Beulshausen <dbeu@php.net>2001-07-01 20:18:51 +0000
committerDaniel Beulshausen <dbeu@php.net>2001-07-01 20:18:51 +0000
commit4aa6ae493ef8a9aa3cb047ec3db2459de546afd2 (patch)
tree1f778d5cb8f7d5c33447e200699b5bba078ab533 /ext/standard/php_var.h
parent8934c1eb6a31a70408cb2353b655f7963721de48 (diff)
downloadphp-git-4aa6ae493ef8a9aa3cb047ec3db2459de546afd2.tar.gz
PHPAPI-ize php_var_* functions
# need this for shm*
Diffstat (limited to 'ext/standard/php_var.h')
-rw-r--r--ext/standard/php_var.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_var.h b/ext/standard/php_var.h
index 7e2391adc3..86bd50c549 100644
--- a/ext/standard/php_var.h
+++ b/ext/standard/php_var.h
@@ -30,8 +30,8 @@ void php_var_dump(pval **struc, int level);
/* typdef HashTable php_serialize_data_t; */
#define php_serialize_data_t HashTable
-void php_var_serialize(pval *buf, pval **struc, php_serialize_data_t *var_hash);
-int php_var_unserialize(pval **rval, const char **p, const char *max, php_serialize_data_t *var_hash);
+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);
#define PHP_VAR_SERIALIZE_INIT(var_hash) \
zend_hash_init(&(var_hash),10,NULL,NULL,0)