X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_url.h;h=cc663acaa2edc7ae68487948807a851f648d84b2;hb=58410541834f8f897291c290d38e7a505dbb93c1;hp=4b7657c38967dfa36a809e2982677f878328da97;hpb=61c5a47e7530b142df6b67332e60a339998c2492;p=m6w6%2Fext-http diff --git a/php_http_url.h b/php_http_url.h index 4b7657c..cc663ac 100644 --- a/php_http_url.h +++ b/php_http_url.h @@ -41,10 +41,7 @@ PHP_HTTP_API STATUS php_http_url_encode_hash_ex(HashTable *ht, php_http_buffer_t static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC) { - *str = INI_STR("arg_separator.output"); - *len = strlen(*str); - - if (!*len) { + if (SUCCESS != php_http_ini_entry(ZEND_STRL("arg_separator.output"), str, len, 0 TSRMLS_CC) || !*len) { *str = PHP_HTTP_URL_ARGSEP; *len = lenof(PHP_HTTP_URL_ARGSEP); } @@ -153,8 +150,7 @@ static inline HashTable *php_http_url_to_struct(php_url *url, zval *strct TSRMLS return Z_ARRVAL(arr); } -extern zend_class_entry *php_http_url_class_entry; -extern zend_function_entry php_http_url_method_entry[]; +zend_class_entry *php_http_url_get_class_entry(void); #define php_http_url_object_new php_http_object_new #define php_http_url_object_new_ex php_http_object_new_ex @@ -164,7 +160,7 @@ PHP_METHOD(HttpUrl, mod); PHP_METHOD(HttpUrl, toString); PHP_METHOD(HttpUrl, toArray); -extern PHP_MINIT_FUNCTION(http_url); +PHP_MINIT_FUNCTION(http_url); #endif