From dc6bcfdcc5058940a0ffc919587f1cce5c63ec2f Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Wed, 5 Mar 2014 19:25:45 +0530 Subject: final patch for adding hr tag to libdom --- include/dom/html/html_hr_element.h | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'include/dom/html/html_hr_element.h') diff --git a/include/dom/html/html_hr_element.h b/include/dom/html/html_hr_element.h index 2e182d5..14f09f6 100644 --- a/include/dom/html/html_hr_element.h +++ b/include/dom/html/html_hr_element.h @@ -3,5 +3,39 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#ifndef dom_html_hr_element_h_ +#define dom_html_hr_element_h_ +#include +#include +#include + +typedef struct dom_html_hr_element dom_html_hr_element; + +dom_exception dom_html_hr_element_get_no_shade( + dom_html_hr_element *ele, bool *no_shade); + +dom_exception dom_html_hr_element_set_no_shade( + dom_html_hr_element *ele, bool no_shade); + +dom_exception dom_html_hr_element_get_align( + dom_html_hr_element *element, dom_string **align); + +dom_exception dom_html_hr_element_set_align( + dom_html_hr_element *element, dom_string *align); + +dom_exception dom_html_hr_element_get_size( + dom_html_hr_element *element, dom_string **size); + +dom_exception dom_html_hr_element_set_size( + dom_html_hr_element *ele, dom_string *size); + +dom_exception dom_html_hr_element_get_width( + dom_html_hr_element *ele, dom_string **width); + +dom_exception dom_html_hr_element_set_width( + dom_html_hr_element *ele, dom_string *width); + +#endif -- cgit v1.2.3