Fixing set_options to Plugin class
[python-purple] / libpurple / xmlnode.pxd
1 #
2 #  Copyright (c) 2008 INdT - Instituto Nokia de Tecnologia
3 #
4 #  This file is part of python-purple.
5 #
6 #  python-purple is free software: you can redistribute it and/or modify
7 #  it under the terms of the GNU General Public License as published by
8 #  the Free Software Foundation, either version 3 of the License, or
9 #  (at your option) any later version.
10 #
11 #  python-purple is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #  GNU General Public License for more details.
15 #
16 #  You should have received a copy of the GNU General Public License
17 #  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18 #
19
20 cimport glib
21
22 cdef extern from *:
23     ctypedef int size_t
24
25 cdef extern from "libpurple/xmlnode.h":
26     ctypedef struct xmlnode
27
28     ctypedef enum XMLNodeType:
29         XMLNODE_TYPE_TAG
30         XMLNODE_TYPE_ATTRIB
31         XMLNODE_TYPE_DATA
32
33     ctypedef struct xmlnode:
34         char *name
35         char *xmlns
36         XMLNodeType type
37         char *data
38         size_t data_sz
39         xmlnode *parent
40         xmlnode *child
41         xmlnode *lastchild
42         xmlnode *next
43         char *prefix
44         glib.GHashTable *namespace_map
45
46     xmlnode *xmlnode_get_child(xmlnode *parent, char *name)
47     char *xmlnode_to_str(xmlnode *node, int *len)
48     char *xmlnode_get_data(xmlnode *node)
49     char *xmlnode_get_attrib(xmlnode *node, char *attr)