From 4c706c539f2ae7f390c3463013e4e41428993c6c Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Sat, 10 May 2014 01:32:06 +0530 Subject: OList
    Element --- include/dom/dom.h | 1 + include/dom/html/html_olist_element.h | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) (limited to 'include/dom') diff --git a/include/dom/dom.h b/include/dom/dom.h index 0610427..4af78f7 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -69,6 +69,7 @@ #include #include #include +#include /* DOM Events header */ #include diff --git a/include/dom/html/html_olist_element.h b/include/dom/html/html_olist_element.h index 2e182d5..3d1511e 100644 --- a/include/dom/html/html_olist_element.h +++ b/include/dom/html/html_olist_element.h @@ -3,5 +3,33 @@ * 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_o_list_element_h_ +#define dom_html_o_list_element_h_ +#include +#include +#include + +typedef struct dom_html_o_list_element dom_html_o_list_element; + +dom_exception dom_html_o_list_element_get_compact( + dom_html_o_list_element *ele, bool *compact); + +dom_exception dom_html_o_list_element_set_compact( + dom_html_o_list_element *ele, bool compact); + +dom_exception dom_html_o_list_element_get_start( + dom_html_o_list_element *ele, int32_t *start); + +dom_exception dom_html_o_list_element_set_start( + dom_html_o_list_element *ele, uint32_t start); + +dom_exception dom_html_o_list_element_get_type( + dom_html_o_list_element *ele, dom_string **type); + +dom_exception dom_html_o_list_element_set_type( + dom_html_o_list_element *ele, dom_string *type); + +#endif -- cgit v1.2.3