summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-04-30 20:47:44 +0530
committerrsk1994 <rsk1coder99@gmail.com>2014-04-30 20:47:44 +0530
commit12d3f1b1de5b47f710cb02d7d4b4136219ea5603 (patch)
tree5f6abac164cb3956778e8a9b037455abaed1fd0a /include/dom/html
parentdb5517f4e24d0e7c39a405ce1b363c887196784a (diff)
downloadlibdom-12d3f1b1de5b47f710cb02d7d4b4136219ea5603.tar.gz
libdom-12d3f1b1de5b47f710cb02d7d4b4136219ea5603.tar.bz2
adding DL element rev.1rupindersingh/dlist
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_dlist_element.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/dom/html/html_dlist_element.h b/include/dom/html/html_dlist_element.h
index 2e182d5..e537994 100644
--- a/include/dom/html/html_dlist_element.h
+++ b/include/dom/html/html_dlist_element.h
@@ -3,5 +3,21 @@
* 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_d_list_element_h_
+#define dom_html_d_list_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+typedef struct dom_html_d_list_element dom_html_d_list_element;
+
+dom_exception dom_html_d_list_element_get_compact(
+ dom_html_d_list_element *ele, bool *compact);
+
+dom_exception dom_html_d_list_element_set_compact(
+ dom_html_d_list_element *ele, bool compact);
+
+#endif