summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2015-10-25 19:10:39 +0000
committerVincent Sanders <vince@kyllikki.org>2015-10-25 19:10:39 +0000
commit8dd180745e9e2cf4581dbd8dc0a6cb860594913c (patch)
treecff5a786706784bb4504d429c3647bb18ffa1183 /include/dom/html
parentdf9016f830a109f70fb1a418ae189c0a3e607cca (diff)
downloadlibdom-8dd180745e9e2cf4581dbd8dc0a6cb860594913c.tar.gz
libdom-8dd180745e9e2cf4581dbd8dc0a6cb860594913c.tar.bz2
Update the html pre element API to use dom_long
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_pre_element.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/dom/html/html_pre_element.h b/include/dom/html/html_pre_element.h
index bd72701..48c885f 100644
--- a/include/dom/html/html_pre_element.h
+++ b/include/dom/html/html_pre_element.h
@@ -9,15 +9,17 @@
#define dom_html_pre_element_h_
#include <stdbool.h>
+
+#include <dom/inttypes.h>
#include <dom/core/exceptions.h>
#include <dom/core/string.h>
typedef struct dom_html_pre_element dom_html_pre_element;
dom_exception dom_html_pre_element_get_width(
- dom_html_pre_element *element, int32_t *width);
+ dom_html_pre_element *element, dom_long *width);
dom_exception dom_html_pre_element_set_width(
- dom_html_pre_element *element, uint32_t width);
+ dom_html_pre_element *element, dom_long width);
#endif