blob: 4ea06780a2bf0df09a4b149e7bb5e94793eaf7a4 (
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(FILE *fd);
void ghb_plist_write(FILE *file, GValue *gval);
void ghb_plist_write_file(const gchar *filename, GValue *gval);
#endif // _PLIST_H_
|