From bb8f6c2adbc9f78801d49d3c748d2abe9d4c43a9 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 25 Oct 2015 23:20:09 +0000 Subject: Update the html table cell element API to use dom_ulong where apropriate --- include/dom/html/html_tablecell_element.h | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'include') diff --git a/include/dom/html/html_tablecell_element.h b/include/dom/html/html_tablecell_element.h index 938d148..9d5c152 100644 --- a/include/dom/html/html_tablecell_element.h +++ b/include/dom/html/html_tablecell_element.h @@ -10,13 +10,15 @@ #define dom_html_table_cell_element_h_ #include + +#include #include #include typedef struct dom_html_table_cell_element dom_html_table_cell_element; dom_exception dom_html_table_cell_element_get_cell_index( - dom_html_table_cell_element *table_cell, int32_t *cell_index); + dom_html_table_cell_element *table_cell, dom_long *cell_index); dom_exception dom_html_table_cell_element_get_abbr( dom_html_table_cell_element *table_cell, dom_string **abbr); @@ -85,16 +87,16 @@ dom_exception dom_html_table_cell_element_set_width( dom_html_table_cell_element *table_cell, dom_string *width); dom_exception dom_html_table_cell_element_get_col_span( - dom_html_table_cell_element *table_cell, int32_t *col_span); + dom_html_table_cell_element *table_cell, dom_ulong *col_span); dom_exception dom_html_table_cell_element_set_col_span( - dom_html_table_cell_element *table_cell, uint32_t col_span); + dom_html_table_cell_element *table_cell, dom_ulong col_span); dom_exception dom_html_table_cell_element_get_row_span( - dom_html_table_cell_element *table_cell, int32_t *row_span); + dom_html_table_cell_element *table_cell, dom_ulong *row_span); dom_exception dom_html_table_cell_element_set_row_span( - dom_html_table_cell_element *table_cell, uint32_t row_span); + dom_html_table_cell_element *table_cell, dom_ulong row_span); dom_exception dom_html_table_cell_element_get_no_wrap( dom_html_table_cell_element *ele, bool *no_wrap); -- cgit v1.2.3