From 4e870f668f3252d61d206f6648bce9cef1f66545 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 25 Oct 2015 09:07:53 +0000 Subject: add property getter and setter helpers for the dom_ulong type --- src/html/html_element.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/html/html_element.h') diff --git a/src/html/html_element.h b/src/html/html_element.h index a1130cc..86c696b 100644 --- a/src/html/html_element.h +++ b/src/html/html_element.h @@ -122,6 +122,11 @@ dom_exception dom_html_element_get_int32_t_property(dom_html_element *ele, dom_exception dom_html_element_set_int32_t_property(dom_html_element *ele, const char *name, uint32_t len, uint32_t value); +dom_exception dom_html_element_get_dom_ulong_property(dom_html_element *ele, + const char *name, uint32_t len, dom_ulong *value); +dom_exception dom_html_element_set_dom_ulong_property(dom_html_element *ele, + const char *name, uint32_t len, dom_ulong value); + extern struct dom_html_element_vtable _dom_html_element_vtable; #endif -- cgit v1.2.3