summaryrefslogtreecommitdiffstats
path: root/gtk/src/plist.h
blob: 1587c89acb0537a9deea610bd6026c9b12e2e046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#if !defined(_PLIST_H_)
#define _PLIST_H_

#include <stdio.h>
#include <glib.h>
#include <glib-object.h>
#include "values.h"

GhbValue* ghb_plist_parse(const gchar *buf, gssize len);
GhbValue* ghb_plist_parse_file(const gchar *filename);
void ghb_plist_write(FILE *file, GhbValue *gval);
void ghb_plist_write_file(const gchar *filename, GhbValue *gval);

#endif // _PLIST_H_