X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2Fsvgtiny_internal.h;h=ba0db7029b30d719dc74d2dd401fdce9d1de0ac7;hb=2db6ab94b8d1d2f6ab9b1ae96f329eb0fe2d9661;hp=6a04c72d2c2a3877318579846862a3ac68f11110;hpb=1e74f7c861dc35ef1fa7d661c9b125305c9f33a6;p=libsvgtiny.git diff --git a/src/svgtiny_internal.h b/src/svgtiny_internal.h index 6a04c72..ba0db70 100644 --- a/src/svgtiny_internal.h +++ b/src/svgtiny_internal.h @@ -68,6 +68,14 @@ struct svgtiny_parse_state { #include "svgtiny_strings.h" #undef SVGTINY_STRING_ACTION2 + /* Where we store the interned copy of the SVG XML namespace, + * + * http://www.w3.org/2000/svg + * + * We handle it separately it has a different type + * (lwc_string) than those above (dom_string). + */ + lwc_string *interned_svg_xmlns; }; struct svgtiny_list; @@ -92,8 +100,6 @@ char *svgtiny_strndup(const char *s, size_t n); #endif /* svgtiny_css.c */ -css_error svgtiny_resolve_url(void *pw, - const char *base, lwc_string *rel, lwc_string **abs); css_error svgtiny_create_stylesheet(css_stylesheet **sheet, bool inline_style);