summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-10 02:38:24 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:05 +0530
commit82c8ae1c92a31e2395334b58bc2f6a3702cf06b7 (patch)
tree2a5bc87d63741801cd992fd93f00314f7def8b5e /include/dom/html
parent4c706c539f2ae7f390c3463013e4e41428993c6c (diff)
downloadlibdom-82c8ae1c92a31e2395334b58bc2f6a3702cf06b7.tar.gz
libdom-82c8ae1c92a31e2395334b58bc2f6a3702cf06b7.tar.bz2
LI <li> Element
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_li_element.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/include/dom/html/html_li_element.h b/include/dom/html/html_li_element.h
index 2e182d5..465bb98 100644
--- a/include/dom/html/html_li_element.h
+++ b/include/dom/html/html_li_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_li_element_h_
+#define dom_html_li_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+typedef struct dom_html_li_element dom_html_li_element;
+
+dom_exception dom_html_li_element_get_value(
+ dom_html_li_element *ele, int32_t *value);
+
+dom_exception dom_html_li_element_set_value(
+ dom_html_li_element *ele, uint32_t value);
+
+dom_exception dom_html_li_element_get_type(
+ dom_html_li_element *ele, dom_string **type);
+
+dom_exception dom_html_li_element_set_type(
+ dom_html_li_element *ele, dom_string *type);
+
+#endif