summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 23:20:09 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 23:20:09 +0000
commitbb8f6c2adbc9f78801d49d3c748d2abe9d4c43a9 (patch)
tree29acbaeab7970d313733cc8ed33a520ce28b3214 /include
parentaf8712ac928f4fbde2570180cd743c59d8228442 (diff)
downloadlibdom-bb8f6c2adbc9f78801d49d3c748d2abe9d4c43a9.tar.gz
libdom-bb8f6c2adbc9f78801d49d3c748d2abe9d4c43a9.tar.bz2
Update the html table cell element API to use dom_ulong where apropriate
Diffstat (limited to 'include')
-rw-r--r--include/dom/html/html_tablecell_element.h12
1 files changed, 7 insertions, 5 deletions
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 <stdbool.h>
+
+#include <dom/inttypes.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
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);