summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 19:19:49 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 19:19:49 +0000
commitaf8712ac928f4fbde2570180cd743c59d8228442 (patch)
tree7796fc6b4676c40876a083e41c04f8cd858eb2dc /include
parent8dd180745e9e2cf4581dbd8dc0a6cb860594913c (diff)
downloadlibdom-af8712ac928f4fbde2570180cd743c59d8228442.tar.gz
libdom-af8712ac928f4fbde2570180cd743c59d8228442.tar.bz2
Update the html li element API to use dom_long
Diffstat (limited to 'include')
-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);