Don't forget the new file
[xiph/unicode.git] / xiph-qt / build-win32 / pxml.h
blob7985ba8d1dee54bbd0447291c0a04aaba213b4ce
1 /*
2 * pxml.h
4 * Very simple xml plist file parser - header file.
7 * Copyright (c) 2005 Arek Korbik
9 * This file is part of XiphQT, the Xiph QuickTime Components.
11 * XiphQT is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * XiphQT is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with XiphQT; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 * Last modified: $Id$
31 #if !defined(__pxml_h__)
32 #define __pxml_h__
34 #if defined(__APPLE_CC__)
35 #include <CoreServices/CoreServices.h>
36 #include <CoreFoundation/CoreFoundation.h>
37 #else
38 #include <ConditionalMacros.h>
39 #include <MacTypes.h>
40 #include <CoreFoundation.h>
41 #endif
44 #ifdef __cplusplus
45 extern "C" {
46 #endif
49 extern CFDictionaryRef pxml_parse_plist(unsigned char *plist_str, long plist_size);
52 #ifdef __cplusplus
54 #endif
57 #endif /* __pxml_h__ */