summaryrefslogtreecommitdiff
path: root/include/dom/html/html_input_element.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 18:54:22 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 18:54:22 +0000
commitdf9016f830a109f70fb1a418ae189c0a3e607cca (patch)
treeaf6e2cb16c8f25b846a7a73f0b7ae5077bd811c3 /include/dom/html/html_input_element.h
parent3963f406d9139eec74f537378c46ca04dfaf4e59 (diff)
downloadlibdom-df9016f830a109f70fb1a418ae189c0a3e607cca.tar.gz
libdom-df9016f830a109f70fb1a418ae189c0a3e607cca.tar.bz2
Update the input element API to use dom_ulong where apropriate
Diffstat (limited to 'include/dom/html/html_input_element.h')
-rw-r--r--include/dom/html/html_input_element.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/dom/html/html_input_element.h b/include/dom/html/html_input_element.h
index 086e1cb..c73dca3 100644
--- a/include/dom/html/html_input_element.h
+++ b/include/dom/html/html_input_element.h
@@ -9,6 +9,8 @@
#define dom_html_input_element_h_
#include <stdbool.h>
+
+#include <dom/inttypes.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
#include <dom/html/html_form_element.h>
@@ -85,10 +87,10 @@ dom_exception dom_html_input_element_set_read_only(
dom_html_input_element *input, bool read_only);
dom_exception dom_html_input_element_get_size(
- dom_html_input_element *input, int32_t *size);
+ dom_html_input_element *input, dom_ulong *size);
dom_exception dom_html_input_element_set_size(
- dom_html_input_element *input, uint32_t size);
+ dom_html_input_element *input, dom_ulong size);
dom_exception dom_html_input_element_get_src(
dom_html_input_element *input, dom_string **src);