summaryrefslogtreecommitdiff
path: root/include/dom/html/html_input_element.h
diff options
context:
space:
mode:
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);