summaryrefslogblamecommitdiff
path: root/saedit/xml.h
blob: 2f5bc2bec4b436725743061fe7e20240e3c0e483 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                           
                  
                 

                   



                        
                    

















                                                                                                   

      
/*=======================================*\
|  ____                         ____      |
| /    \         /\            |          |
| \____         /  \           |____      |
|      \       /____\          |          |
| \____/prite /      \nimation |____ditor |
|                                         |
|      Copyleft Vasily_Makarov 2011       |
|                                         |
\*=======================================*/
#ifndef XML_H
#define XML_H

#include <stdio.h>
#include <glib.h>
#include "common.h"

typedef struct {
    gchar  *name;
    gchar  *text;
    gchar  **attributes;
    int line_number;
    GList *sub_nodes;
} XMLNode;


XMLNode *xml_parse_file    (const gchar    *name);

XMLNode *xml_parse_buffer  (const gchar    *buffer);

void     xml_free          (XMLNode        *node);

void     xml_output        (const XMLNode  *node,
                            GString        *output);

gchar  **xml_attr_new(const gchar *name, const gchar *value);
gchar	*xml_node_get_attr_value(const XMLNode *node, const gchar *attr_name);
gint	 xml_node_compare_with_name_func(gconstpointer a, gconstpointer b);
gint	 xml_node_compare_with_action_node_by_imageset_name_func(gconstpointer a, gconstpointer b);
gint	 xml_node_compare_with_attr_func(const XMLNode *node, const gchar **attr);

#endif