summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/dom/dom.h1
-rw-r--r--include/dom/html/html_meta_element.h26
2 files changed, 27 insertions, 0 deletions
diff --git a/include/dom/dom.h b/include/dom/dom.h
index 1c0e908..05ce3e6 100644
--- a/include/dom/dom.h
+++ b/include/dom/dom.h
@@ -45,6 +45,7 @@
#include <dom/html/html_head_element.h>
#include <dom/html/html_link_element.h>
#include <dom/html/html_title_element.h>
+#include <dom/html/html_meta_element.h>
#include <dom/html/html_form_element.h>
/* DOM Events header */
diff --git a/include/dom/html/html_meta_element.h b/include/dom/html/html_meta_element.h
index 8ceb459..b9898f1 100644
--- a/include/dom/html/html_meta_element.h
+++ b/include/dom/html/html_meta_element.h
@@ -8,7 +8,33 @@
#ifndef dom_html_meta_element_h_
#define dom_html_meta_element_h_
+#include <dom/core/string.h>
+
typedef struct dom_html_meta_element dom_html_meta_element;
+dom_exception dom_html_meta_element_get_content(dom_html_meta_element *ele,
+ dom_string **content);
+
+dom_exception dom_html_meta_element_set_content(dom_html_meta_element *ele,
+ dom_string *content);
+
+dom_exception dom_html_meta_element_get_http_equiv(dom_html_meta_element *ele,
+ dom_string **http_equiv);
+
+dom_exception dom_html_meta_element_set_http_equiv(dom_html_meta_element *ele,
+ dom_string *http_equiv);
+
+dom_exception dom_html_meta_element_get_name(dom_html_meta_element *ele,
+ dom_string **name);
+
+dom_exception dom_html_meta_element_set_name(dom_html_meta_element *ele,
+ dom_string *name);
+
+dom_exception dom_html_meta_element_get_scheme(dom_html_meta_element *ele,
+ dom_string **scheme);
+
+dom_exception dom_html_meta_element_set_scheme(dom_html_meta_element *ele,
+ dom_string *scheme);
+
#endif