snes9x/bml.h

32 lines
582 B
C
Raw Permalink Normal View History

2018-04-24 21:16:22 +00:00
#ifndef __BML_H
#define __BML_H
#include <vector>
2018-04-26 00:29:26 +00:00
const int bml_attr_type = -2;
2018-04-24 21:16:22 +00:00
typedef struct bml_node
{
char *name;
char *data;
int depth;
std::vector<bml_node *> child;
} bml_node;
2018-04-26 00:29:26 +00:00
bml_node *bml_find_sub (bml_node *node, const char *name);
bml_node *bml_parse_file (const char *filename);
2018-04-24 21:16:22 +00:00
/* Parse character array into BML tree. Destructive to input. */
bml_node *bml_parse (char **buffer);
/* Recursively free bml_node and substructures */
void bml_free_node (bml_node *);
/* Print node structure to stdout */
void bml_print_node (bml_node *);
#endif