Subversion Repositories Kolibri OS

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3584 sourcerer 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 
6
 */
7
 
8
#ifndef dom_html_head_element_h_
9
#define dom_html_head_element_h_
10
 
11
#include 
12
 
13
typedef struct dom_html_head_element dom_html_head_element;
14
 
15
dom_exception dom_html_head_element_get_profile(
16
		struct dom_html_head_element *element, dom_string **profile);
17
dom_exception dom_html_head_element_set_profile(
18
		struct dom_html_head_element *element, dom_string *profile);
19
 
20
#endif
21