summaryrefslogtreecommitdiff
path: root/include/dom/html/html_olist_element.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-23 15:27:53 +0100
committerVincent Sanders <vince@kyllikki.org>2015-10-23 15:32:00 +0100
commit2803afb2bcf521af8963d9b3494c02c9c906d69b (patch)
tree8acdd3cbaa995e311bb745b45ba8981d1a4bbb40 /include/dom/html/html_olist_element.h
parent2526ec3c863b4608b83127437fa65915b8bb8983 (diff)
downloadlibdom-2803afb2bcf521af8963d9b3494c02c9c906d69b.tar.gz
libdom-2803afb2bcf521af8963d9b3494c02c9c906d69b.tar.bz2
Update olist to use dom_long type
Diffstat (limited to 'include/dom/html/html_olist_element.h')
-rw-r--r--include/dom/html/html_olist_element.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/dom/html/html_olist_element.h b/include/dom/html/html_olist_element.h
index ca19ad1..fe99dae 100644
--- a/include/dom/html/html_olist_element.h
+++ b/include/dom/html/html_olist_element.h
@@ -9,6 +9,7 @@
#define dom_html_olist_element_h_
#include <stdbool.h>
+#include <dom/inttypes.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
@@ -21,10 +22,10 @@ dom_exception dom_html_olist_element_set_compact(
dom_html_olist_element *ele, bool compact);
dom_exception dom_html_olist_element_get_start(
- dom_html_olist_element *ele, int32_t *start);
+ dom_html_olist_element *ele, dom_long *start);
dom_exception dom_html_olist_element_set_start(
- dom_html_olist_element *ele, uint32_t start);
+ dom_html_olist_element *ele, dom_long start);
dom_exception dom_html_olist_element_get_type(
dom_html_olist_element *ele, dom_string **type);