blob: 8b2498826d055c8ae1d06a8c4ecfc525a7a599c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#if !defined(_PLIST_H_)
#define _PLIST_H_
#include <stdio.h>
#include <glib.h>
#include <glib-object.h>
GValue* ghb_plist_parse(const gchar *buf, gssize len);
GValue* ghb_plist_parse_file(const gchar *filename);
void ghb_plist_write(FILE *file, GValue *gval);
void ghb_plist_write_file(const gchar *filename, GValue *gval);
#endif // _PLIST_H_
|