diff options
Diffstat (limited to 'gtk/src/plist.h')
-rw-r--r-- | gtk/src/plist.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gtk/src/plist.h b/gtk/src/plist.h new file mode 100644 index 000000000..8b2498826 --- /dev/null +++ b/gtk/src/plist.h @@ -0,0 +1,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_ + |