summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-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);