diff options
author | Stanislav Malyshev <stas@php.net> | 2009-06-30 17:52:21 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2009-06-30 17:52:21 +0000 |
commit | 2361b4ea2a640fe11c615fdeac6e8b27f86340a0 (patch) | |
tree | 23de9869bed305b0010ba4c69b8b2160552a299e /ext/json/json.c | |
parent | b4a43d0d9461b0c915d98bf9c86070640f529db7 (diff) | |
download | php-git-2361b4ea2a640fe11c615fdeac6e8b27f86340a0.tar.gz |
fix json shared build on Windows
Diffstat (limited to 'ext/json/json.c')
-rw-r--r-- | ext/json/json.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/json/json.c b/ext/json/json.c index 73bb079620..5077dac562 100644 --- a/ext/json/json.c +++ b/ext/json/json.c @@ -411,7 +411,7 @@ static void json_escape_string(smart_str *buf, char *s, int len, int options TSR } /* }}} */ -PHPAPI void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC) /* {{{ */ +PHP_JSON_API void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC) /* {{{ */ { switch (Z_TYPE_P(val)) { @@ -467,7 +467,7 @@ PHPAPI void php_json_encode(smart_str *buf, zval *val, int options TSRMLS_DC) /* } /* }}} */ -PHPAPI void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC) /* {{{ */ +PHP_JSON_API void php_json_decode(zval *return_value, char *str, int str_len, zend_bool assoc, long depth TSRMLS_DC) /* {{{ */ { int utf16_len; zval *z; |