From df9016f830a109f70fb1a418ae189c0a3e607cca Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 25 Oct 2015 18:54:22 +0000 Subject: Update the input element API to use dom_ulong where apropriate --- include/dom/html/html_input_element.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'include') 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 + +#include #include #include #include @@ -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); -- cgit v1.2.3