libdom
Loading...
Searching...
No Matches
html_style_element.h
Go to the documentation of this file.
1/*
2 * This file is part of libdom.
3 * Licensed under the MIT License,
4 * http://www.opensource.org/licenses/mit-license.php
5 * Copyright 2009 Bo Yang <struggleyb.nku.com>
6 */
7
8#ifndef dom_html_style_element_h_
9#define dom_html_style_element_h_
10
11#include <stdbool.h>
12#include <dom/core/exceptions.h>
13#include <dom/core/string.h>
14
16
18 bool *disabled);
19
21 bool disabled);
22
24 dom_string **media);
25
27 dom_string *media);
28
30 dom_string **type);
31
33 dom_string *type);
34
35#endif
36
dom_exception
Definition exceptions.h:24
dom_exception dom_html_style_element_get_media(dom_html_style_element *ele, dom_string **media)
dom_exception dom_html_style_element_get_disabled(dom_html_style_element *ele, bool *disabled)
Definition html_style_element.c:193
dom_exception dom_html_style_element_set_media(dom_html_style_element *ele, dom_string *media)
dom_exception dom_html_style_element_set_type(dom_html_style_element *ele, dom_string *type)
dom_exception dom_html_style_element_set_disabled(dom_html_style_element *ele, bool disabled)
Definition html_style_element.c:207
dom_exception dom_html_style_element_get_type(dom_html_style_element *ele, dom_string **type)
Definition html_style_element.h:15
Definition string.h:19