summaryrefslogtreecommitdiff
path: root/ext/standard/url_scanner_ex.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-10-16 17:25:36 +0000
committerSascha Schumann <sas@php.net>2000-10-16 17:25:36 +0000
commit1c85ad029b4a09358bdd3eb101205151f9cd28b0 (patch)
tree1e1a823bf6f6d427dfcc8cf9037902ef6599ec25 /ext/standard/url_scanner_ex.h
parent8f5e25598aab70073da1b56428cb8e693e19ce79 (diff)
downloadphp-git-1c85ad029b4a09358bdd3eb101205151f9cd28b0.tar.gz
Enable users to set the HTML tags to rewrite
through a configuration directive
Diffstat (limited to 'ext/standard/url_scanner_ex.h')
-rw-r--r--ext/standard/url_scanner_ex.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/standard/url_scanner_ex.h b/ext/standard/url_scanner_ex.h
index 3653246a8b..eaaf2e2074 100644
--- a/ext/standard/url_scanner_ex.h
+++ b/ext/standard/url_scanner_ex.h
@@ -19,6 +19,8 @@
#ifndef URL_SCANNER_EX_H
#define URL_SCANNER_EX_H
+PHP_MINIT_FUNCTION(url_scanner_ex);
+PHP_MSHUTDOWN_FUNCTION(url_scanner_ex);
PHP_RSHUTDOWN_FUNCTION(url_scanner_ex);
PHP_RINIT_FUNCTION(url_scanner_ex);
@@ -40,7 +42,11 @@ typedef struct {
smart_str q_name;
smart_str q_value;
+ char *lookup_data;
int state;
+
+ /* Everything above is zeroed in RINIT */
+ HashTable *tags;
} url_adapt_state_ex_t;
#endif