WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / libhb / plist.h
blob47a5e5e089b242f464877415424066477c77321d
1 /* plist.h
3 Copyright (c) 2003-2015 HandBrake Team
4 This file is part of the HandBrake source code
5 Homepage: <http://handbrake.fr/>.
6 It may be used under the terms of the GNU General Public License v2.
7 For full terms see the file COPYING file or visit http://www.gnu.org/licenses/gpl-2.0.html
8 */
10 #if !defined(_HB_PLIST_H_)
11 #define _HB_PLIST_H_
13 #include <stdio.h>
14 #include "hb_dict.h"
16 hb_value_t * hb_plist_parse(const char *buf, size_t len);
17 hb_value_t * hb_plist_parse_file(const char *filename);
18 void hb_plist_write(FILE *file, hb_value_t *val);
19 void hb_plist_write_file(const char *filename, hb_value_t *val);
21 #endif // _HB_PLIST_H_