From 76fa6b3589c3ee19db20201ab072d6907e84390b Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Tue, 13 May 2014 18:08:32 +0530 Subject: Mod Element --- include/dom/html/html_mod_element.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'include/dom/html/html_mod_element.h') diff --git a/include/dom/html/html_mod_element.h b/include/dom/html/html_mod_element.h index 2e182d5..99c4f2e 100644 --- a/include/dom/html/html_mod_element.h +++ b/include/dom/html/html_mod_element.h @@ -3,5 +3,27 @@ * 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_mod_element_h_ +#define dom_html_mod_element_h_ +#include +#include +#include + +typedef struct dom_html_mod_element dom_html_mod_element; + +dom_exception dom_html_mod_element_get_cite( + dom_html_mod_element *ele, dom_string **cite); + +dom_exception dom_html_mod_element_set_cite( + dom_html_mod_element *ele, dom_string *cite); + +dom_exception dom_html_mod_element_get_date_time( + dom_html_mod_element *ele, dom_string **date_time); + +dom_exception dom_html_mod_element_set_date_time( + dom_html_mod_element *ele, dom_string *date_time); + +#endif -- cgit v1.2.3