mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
20 lines
341 B
C
20 lines
341 B
C
#ifndef RCXML_H
|
|
#define RCXML_H
|
|
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "buf.h"
|
|
|
|
struct rcxml {
|
|
bool client_side_decorations;
|
|
};
|
|
|
|
extern struct rcxml rc;
|
|
|
|
void rcxml_init(struct rcxml *rc);
|
|
void rcxml_parse_xml(struct buf *b);
|
|
void rcxml_read(const char *filename);
|
|
void rcxml_get_nodenames(struct buf *b);
|
|
|
|
#endif /* RCXML_H */
|