summaryrefslogtreecommitdiff
path: root/include/dom/html/html_li_element.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/dom/html/html_li_element.h')
-rw-r--r--include/dom/html/html_li_element.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/dom/html/html_li_element.h b/include/dom/html/html_li_element.h
index 465bb98..1a2d641 100644
--- a/include/dom/html/html_li_element.h
+++ b/include/dom/html/html_li_element.h
@@ -9,16 +9,18 @@
#define dom_html_li_element_h_
#include <stdbool.h>
+
+#include <dom/inttypes.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
typedef struct dom_html_li_element dom_html_li_element;
dom_exception dom_html_li_element_get_value(
- dom_html_li_element *ele, int32_t *value);
+ dom_html_li_element *ele, dom_long *value);
dom_exception dom_html_li_element_set_value(
- dom_html_li_element *ele, uint32_t value);
+ dom_html_li_element *ele, dom_long value);
dom_exception dom_html_li_element_get_type(
dom_html_li_element *ele, dom_string **type);