summaryrefslogtreecommitdiff
path: root/src/select/properties/helpers.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2011-01-20 11:59:46 +0000
commit33b37afeab6180e4fdc3c97f7f6cc713686ac6a9 (patch)
treefeb641941e4fbd0db11bf70415fee5e3be50a08a /src/select/properties/helpers.h
parenta8537a5405583a4c975b56d95cab8bdd5d406e9f (diff)
downloadlibcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.gz
libcss-33b37afeab6180e4fdc3c97f7f6cc713686ac6a9.tar.bz2
Ensure there are zero global symbols without css_ or css__ in front of them. This helps prevent confusion if someone else wants a function called parse_background or similar
svn path=/trunk/libcss/; revision=11416
Diffstat (limited to 'src/select/properties/helpers.h')
-rw-r--r--src/select/properties/helpers.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/select/properties/helpers.h b/src/select/properties/helpers.h
index a2da115..9e3e327 100644
--- a/src/select/properties/helpers.h
+++ b/src/select/properties/helpers.h
@@ -13,45 +13,45 @@ uint32_t generic_destroy_uri(void *bytecode);
uint32_t generic_destroy_length(void *bytecode);
uint32_t generic_destroy_number(void *bytecode);
-css_unit to_css_unit(uint32_t u);
+css_unit css__to_css_unit(uint32_t u);
-css_error cascade_bg_border_color(uint32_t opv, css_style *style,
+css_error css__cascade_bg_border_color(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_color));
-css_error cascade_uri_none(uint32_t opv, css_style *style,
+css_error css__cascade_uri_none(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t,
lwc_string *));
-css_error cascade_border_style(uint32_t opv, css_style *style,
+css_error css__cascade_border_style(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t));
-css_error cascade_border_width(uint32_t opv, css_style *style,
+css_error css__cascade_border_width(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed,
css_unit));
-css_error cascade_length_auto(uint32_t opv, css_style *style,
+css_error css__cascade_length_auto(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed,
css_unit));
-css_error cascade_length_normal(uint32_t opv, css_style *style,
+css_error css__cascade_length_normal(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed,
css_unit));
-css_error cascade_length_none(uint32_t opv, css_style *style,
+css_error css__cascade_length_none(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed,
css_unit));
-css_error cascade_length(uint32_t opv, css_style *style,
+css_error css__cascade_length(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed,
css_unit));
-css_error cascade_number(uint32_t opv, css_style *style,
+css_error css__cascade_number(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t, css_fixed));
-css_error cascade_page_break_after_before(uint32_t opv, css_style *style,
+css_error css__cascade_page_break_after_before(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t));
-css_error cascade_counter_increment_reset(uint32_t opv, css_style *style,
+css_error css__cascade_counter_increment_reset(uint32_t opv, css_style *style,
css_select_state *state,
css_error (*fun)(css_computed_style *, uint8_t,
css_computed_counter *));