summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-09 23:38:03 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:05 +0530
commitb17260bd09aff0c689eb5296082fc473f9f76126 (patch)
treeba8bae98d6db29ceb08a39c85a11e164d68ea97e /include
parent75f10df52d1edd40fda31cabc359da35680389d0 (diff)
downloadlibdom-b17260bd09aff0c689eb5296082fc473f9f76126.tar.gz
libdom-b17260bd09aff0c689eb5296082fc473f9f76126.tar.bz2
Ulist Element
Diffstat (limited to 'include')
-rw-r--r--include/dom/dom.h1
-rw-r--r--include/dom/html/html_ulist_element.h22
2 files changed, 23 insertions, 0 deletions
diff --git a/include/dom/dom.h b/include/dom/dom.h
index 8035622..0610427 100644
--- a/include/dom/dom.h
+++ b/include/dom/dom.h
@@ -68,6 +68,7 @@
#include <dom/html/html_pre_element.h>
#include <dom/html/html_br_element.h>
#include <dom/html/html_label_element.h>
+#include <dom/html/html_ulist_element.h>
/* DOM Events header */
#include <dom/events/events.h>
diff --git a/include/dom/html/html_ulist_element.h b/include/dom/html/html_ulist_element.h
index 2e182d5..c5daa6a 100644
--- a/include/dom/html/html_ulist_element.h
+++ b/include/dom/html/html_ulist_element.h
@@ -3,5 +3,27 @@
* Licensed under the MIT License,
* http://www.opensource.org/licenses/mit-license.php
* Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
*/
+#ifndef dom_html_u_list_element_h_
+#define dom_html_u_list_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+typedef struct dom_html_u_list_element dom_html_u_list_element;
+
+dom_exception dom_html_u_list_element_get_compact(
+ dom_html_u_list_element *ele, bool *compact);
+
+dom_exception dom_html_u_list_element_set_compact(
+ dom_html_u_list_element *ele, bool compact);
+
+dom_exception dom_html_u_list_element_get_type(
+ dom_html_u_list_element *ele, dom_string **type);
+
+dom_exception dom_html_u_list_element_set_type(
+ dom_html_u_list_element *ele, dom_string *type);
+
+#endif