labwc/include/rcxml.h

21 lines
341 B
C
Raw Normal View History

2020-06-05 23:04:54 +01:00
#ifndef RCXML_H
#define RCXML_H
#include <stdio.h>
#include <stdbool.h>
#include "buf.h"
2020-06-05 23:04:54 +01:00
struct rcxml {
bool client_side_decorations;
};
extern struct rcxml rc;
void rcxml_init(struct rcxml *rc);
void rcxml_parse_xml(struct buf *b);
2020-06-05 23:04:54 +01:00
void rcxml_read(const char *filename);
void rcxml_get_nodenames(struct buf *b);
2020-06-05 23:04:54 +01:00
#endif /* RCXML_H */